mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
51b2bbcf92
Increased the number of characters in the name field of the nameEntry struct from 34 to 36. This gives an 8-byte alignment to the offset entry, which provides binary compatibility of the precompiled database file between the IIgs and little-endian 32-bit machines such as Linux boxes. *** THIS MEANS THAT THE PRECOMPILED DATABASE IS NO LONGER BINARY COMPATIBLE WITH EARLIER VERSIONS. Updated descu so that the "Last Updated" line in the describe source "header" is updated to reflect the current date and time (GMT, if supported). Fixed a bug in descu that caused the "header" to be slowly eaten, one character at a time. The describe database source file is no longer part of this archive. It is available separately from the url, above. Added a "Known Bugs" section and URLs on where to find the online database to this README. Modified the installation instructions a bit.
35 lines
690 B
Plaintext
35 lines
690 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: descc.rez,v 1.2 1998/01/17 07:20:07 gdr Exp $
|
|
*/
|
|
#include "Types.rez"
|
|
|
|
/* Don't forget to update the version numbers, below (two places) */
|
|
#define PROG "descc"
|
|
#define DESC "describe(1) source compiler"
|
|
#define AUTHOR "Author: James Brookes <jamesb@ecst.csuchico.edu>"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 1, 0, 5, /* Version 1.0.5 */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
PROG, /* Program name */
|
|
DESC " (GNO)"
|
|
};
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v1.0.4\n"
|
|
DESC " (GNO) \n"
|
|
AUTHOR
|
|
};
|
|
|
|
|