2N/A/*
2N/A * patchlevel.h
2N/A *
2N/A * Copyright (C) 2004-2006 by the Massachusetts Institute of Technology.
2N/A * All rights reserved.
2N/A *
2N/A * Export of this software from the United States of America may
2N/A * require a specific license from the United States Government.
2N/A * It is the responsibility of any person or organization contemplating
2N/A * export to obtain such a license before exporting.
2N/A *
2N/A * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
2N/A * distribute this software and its documentation for any purpose and
2N/A * without fee is hereby granted, provided that the above copyright
2N/A * notice appear in all copies and that both that copyright notice and
2N/A * this permission notice appear in supporting documentation, and that
2N/A * the name of M.I.T. not be used in advertising or publicity pertaining
2N/A * to distribution of the software without specific, written prior
2N/A * permission. Furthermore if you modify this software you must label
2N/A * your software as modified software and not distribute it in such a
2N/A * fashion that it might be confused with the original M.I.T. software.
2N/A * M.I.T. makes no representations about the suitability of
2N/A * this software for any purpose. It is provided "as is" without express
2N/A * or implied warranty.
2N/A */
2N/A
2N/A/*
2N/A * This is the master file for version stamping purposes. The
2N/A * checked-in version will contain the correct version information at
2N/A * all times. Prior to an official release x.y.z,
2N/A * KRB5_MAJOR_RELEASE=x, KRB5_MINOR_RELEASE=y, and KRB5_PATCHLEVEL=z.
2N/A * KRB5_RELTAIL will reflect the release state. It will be
2N/A * "prerelease" for unreleased code either on the trunk or on a
2N/A * release branch. It will be undefined for a final release.
2N/A *
2N/A * Immediately following a final release, the release version numbers
2N/A * will be incremented, and KRB5_RELTAIL will revert to "prerelease".
2N/A *
2N/A * KRB5_RELTAG contains the CVS tag name corresponding to the release.
2N/A * KRB5_RELDATE identifies the date of the release. They should
2N/A * normally be undefined for checked-in code.
2N/A */
2N/A
2N/A/*
2N/A * ==========
2N/A * IMPORTANT:
2N/A * ==========
2N/A *
2N/A * If you are a vendor supplying modified code derived from MIT
2N/A * Kerberos, you SHOULD update KRB5_RELTAIL to identify your
2N/A * organization.
2N/A */
2N/A#define KRB5_MAJOR_RELEASE 1
2N/A#define KRB5_MINOR_RELEASE 8
2N/A#define KRB5_PATCHLEVEL 3
2N/A/* #undef KRB5_RELTAIL */
2N/A#define KRB5_RELDATE "20100804"
2N/A#define KRB5_RELTAG "tags/krb5-1-8-3-final"