/* patchlevel.h */1/*2* Copyright (C) 2004-2006 by the Massachusetts Institute of Technology.3* All rights reserved.4*5* Export of this software from the United States of America may6* require a specific license from the United States Government.7* It is the responsibility of any person or organization contemplating8* export to obtain such a license before exporting.9*10* WITHIN THAT CONSTRAINT, permission to use, copy, modify, and11* distribute this software and its documentation for any purpose and12* without fee is hereby granted, provided that the above copyright13* notice appear in all copies and that both that copyright notice and14* this permission notice appear in supporting documentation, and that15* the name of M.I.T. not be used in advertising or publicity pertaining16* to distribution of the software without specific, written prior17* permission. Furthermore if you modify this software you must label18* your software as modified software and not distribute it in such a19* fashion that it might be confused with the original M.I.T. software.20* M.I.T. makes no representations about the suitability of21* this software for any purpose. It is provided "as is" without express22* or implied warranty.23*/2425/*26* This is the master file for version stamping purposes. The27* checked-in version will contain the correct version information at28* all times. Prior to an official release x.y.z,29* KRB5_MAJOR_RELEASE=x, KRB5_MINOR_RELEASE=y, and KRB5_PATCHLEVEL=z.30* KRB5_RELTAIL will reflect the release state. It will be31* "prerelease" for unreleased code either on the trunk or on a32* release branch. It will be undefined for a final release.33*34* Immediately following a final release, the release version numbers35* will be incremented, and KRB5_RELTAIL will revert to "prerelease".36*37* KRB5_RELTAG contains the CVS tag name corresponding to the release.38* KRB5_RELDATE identifies the date of the release. They should39* normally be undefined for checked-in code.40*/4142/*43* ==========44* IMPORTANT:45* ==========46*47* If you are a vendor supplying modified code derived from MIT48* Kerberos, you SHOULD update KRB5_RELTAIL to identify your49* organization.50*/51#define KRB5_MAJOR_RELEASE 152#define KRB5_MINOR_RELEASE 2253#define KRB5_PATCHLEVEL 154/* #undef KRB5_RELTAIL */55#define KRB5_RELDATE "20250820"56#define KRB5_RELTAG "krb5-1.22.1-final"575859