Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/crypto/krb5/src/patchlevel.h
34869 views
1
/* patchlevel.h */
2
/*
3
* Copyright (C) 2004-2006 by the Massachusetts Institute of Technology.
4
* All rights reserved.
5
*
6
* Export of this software from the United States of America may
7
* require a specific license from the United States Government.
8
* It is the responsibility of any person or organization contemplating
9
* export to obtain such a license before exporting.
10
*
11
* WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
12
* distribute this software and its documentation for any purpose and
13
* without fee is hereby granted, provided that the above copyright
14
* notice appear in all copies and that both that copyright notice and
15
* this permission notice appear in supporting documentation, and that
16
* the name of M.I.T. not be used in advertising or publicity pertaining
17
* to distribution of the software without specific, written prior
18
* permission. Furthermore if you modify this software you must label
19
* your software as modified software and not distribute it in such a
20
* fashion that it might be confused with the original M.I.T. software.
21
* M.I.T. makes no representations about the suitability of
22
* this software for any purpose. It is provided "as is" without express
23
* or implied warranty.
24
*/
25
26
/*
27
* This is the master file for version stamping purposes. The
28
* checked-in version will contain the correct version information at
29
* all times. Prior to an official release x.y.z,
30
* KRB5_MAJOR_RELEASE=x, KRB5_MINOR_RELEASE=y, and KRB5_PATCHLEVEL=z.
31
* KRB5_RELTAIL will reflect the release state. It will be
32
* "prerelease" for unreleased code either on the trunk or on a
33
* release branch. It will be undefined for a final release.
34
*
35
* Immediately following a final release, the release version numbers
36
* will be incremented, and KRB5_RELTAIL will revert to "prerelease".
37
*
38
* KRB5_RELTAG contains the CVS tag name corresponding to the release.
39
* KRB5_RELDATE identifies the date of the release. They should
40
* normally be undefined for checked-in code.
41
*/
42
43
/*
44
* ==========
45
* IMPORTANT:
46
* ==========
47
*
48
* If you are a vendor supplying modified code derived from MIT
49
* Kerberos, you SHOULD update KRB5_RELTAIL to identify your
50
* organization.
51
*/
52
#define KRB5_MAJOR_RELEASE 1
53
#define KRB5_MINOR_RELEASE 22
54
#define KRB5_PATCHLEVEL 1
55
/* #undef KRB5_RELTAIL */
56
#define KRB5_RELDATE "20250820"
57
#define KRB5_RELTAG "krb5-1.22.1-final"
58
59