Files
uworld/logsrv/config.h
2023-12-22 22:53:54 -05:00

27 lines
716 B
C
Executable File

/* SYSTEM SPECIFIC CONFIGURATIONS */
/* ONLY ONE OF THE FOLLOWING MAY BE DEFINED */
#undef ULTRIX /* this should work for most systems */
#define OSF1 /* use this on DEC alpha machines */
#undef NEED_SETENV /* use this if your system doesnt support setenv() */
#define SUN
/* list of servers for client */
/* defualt port all ports must be > 6000 if specified from commandline */
#define PORT 9500
#define DATAFILE "/ecn/ecnstf0/danny/dvmitche/uworld/Uworld.log"
#define GREPCOM "/usr/ucb/grep"
#define TAILCOM "/usr/ucb/tail"
#define MAXLINE 512
#define TRUE 1
#define FALSE 0
#define BACKGROUND 1 /* +-integer for background */
#ifdef SUN
#ifndef NEED_SETENV
#define NEED_SETENV
#endif
#endif