47 lines
1.9 KiB
C
47 lines
1.9 KiB
C
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these librararies and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/* $XConsortium: patchlevel.h /main/2 1996/08/08 14:42:32 cde-hp $ */
|
|
/*
|
|
* patchlevel.h --
|
|
*
|
|
* This file does nothing except define a "patch level" for Tcl.
|
|
* 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" for beta releases or "aZ for alpha
|
|
* releases. The patch level ensures that patches are applied
|
|
* in the correct order and only to appropriate sources.
|
|
*
|
|
* Copyright (c) 1993-1994 The Regents of the University of California.
|
|
* Copyright (c) 1994-1996 Sun Microsystems, Inc.
|
|
*
|
|
* See the file "license.terms" for information on usage and redistribution
|
|
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
*
|
|
* SCCS: @(#) patchlevel.h 1.17 96/04/08 14:15:07
|
|
*/
|
|
|
|
#define TCL_PATCH_LEVEL "7.5"
|