mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
0fa42147e3
from both Phil Vandry's v1 syslogd (which is part of init), and the BSD version. It still needs some work, but it can log to a file or to console at the moment. Until syslogd v1 is removed from init, you should ensure that you're not logging to the same file from both versions of syslogd.
20 lines
461 B
Plaintext
20 lines
461 B
Plaintext
/*
|
|
* $Id: syslogd.rez,v 1.1 1998/10/31 19:02:47 gdr-ftp Exp $
|
|
*/
|
|
|
|
#include "Types.Rez"
|
|
#include "/src/gno/build.tools/builddate.rez"
|
|
|
|
resource rVersion (0x1, purgeable3, nocrossbank) {
|
|
|
|
{ 2, 0, 0, /* version */
|
|
alpha, /* development|alpha|beta|final|release */
|
|
1 /* non-final release number */
|
|
},
|
|
verUS,
|
|
"syslogd",
|
|
"System Logger Daemon\n"
|
|
"Written by Devin Reade for GNO v2.0.6\n"
|
|
BUILD_DATE
|
|
};
|