1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
/* -*- c -*-
* patchlevel.h --
*
* Distributed at MAY-06-2009.
*
* This file does nothing except to define a "patch level" for TRF.
* The patch level has the form "X.YpZ" where X.Y is the base
* release, and Z is a serial number that is used to sequence
* patches for a given release. Thus 7.4p1 is the first patch
* to release 7.4, 7.4p2 is the patch that follows 7.4p1, and
* so on. The "pZ" is omitted in an original new release, and
* it is replaced with "bZ" ("aZ") for beta resp. alpha releases.
* The patch level ensures that patches are applied in the correct
* order and only to appropriate sources.
*
* Copyright (c) 1995 Andreas Kupries (andreas_kupries@users.sourceforge.net).
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* CVS $Id: patchlevel.h,v 1.5 2009/05/07 05:30:35 andreas_kupries Exp $
*/
#define TRF_PATCH_LEVEL "2.1.4"
|