mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-04 22:30:42 +00:00
3689484d24
- fixed a bug introduced in 1.1 where getting an error while reading the calandar file could cause an infinite loop - added "ChangeLog" comments for all versions - added stack checking - eliminated "pragma stacksize" from the source file; it was too small (was 512 bytes, currently using 862 bytes) and overriding the value given on the command line during the GNO base build process README, calendar.info: - Moved the information in these files to the man page. Makefile, calendar.rez: - initial checkin calendar.1: - cleaned it up a bit and made it conform to the GNO base builds - added an example
30 lines
534 B
Plaintext
30 lines
534 B
Plaintext
/*
|
|
* $Id: calendar.rez,v 1.1 1998/07/07 02:14:30 gdr-ftp Exp $
|
|
*/
|
|
|
|
#define PROG "calendar"
|
|
#define DESC "Prints out upcoming events."
|
|
|
|
#include "Types.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 1, 2, 0, /* Version */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
PROG, /* Program name */
|
|
DESC " Released with GNO/ME."
|
|
};
|
|
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v1.2 (6 July 1998)\n"
|
|
"GNO utility: " DESC
|
|
};
|