mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-19 11:30:51 +00:00
2604b42f9a
out of 13/RInclude instead of /src/gno/build.tools. This implies that builddate.rez has to have been previously installed in 13/RInclude; this is done by the 'install' and 'release' targets in /src/gno/build.tools.
34 lines
563 B
Plaintext
34 lines
563 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: libtermcap.rez,v 1.3 1998/12/22 16:05:36 gdr-ftp Exp $
|
|
*/
|
|
|
|
#define LIB "libtermcap for GNO"
|
|
#define PORTED "Ported from 4.4BSD\n"
|
|
|
|
#include "Types.rez"
|
|
#include "builddate.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 2, 0, 6, /* Version 2.0.6 */
|
|
alpha, /* development|alpha|beta|final|release */
|
|
1 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
LIB,
|
|
PORTED
|
|
BUILD_DATE
|
|
};
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
LIB "\n"
|
|
PORTED
|
|
BUILD_DATE
|
|
};
|