1 /* $Id: config.h,v 1.19 2020-11-13 19:44:40 phil Exp $ */
2 
3 #define HAVE_UNISTD_H 			/* POSIX!! */
4 #define HAVE_STRFTIME
5 #define NEED_GETLINE
6 
7 #define SNOLIB_BASE "/usr/lib/snobol4"
8 #define SNOLIB_DIR SNOLIB_BASE "/" VERSION "/lib"
9 
10 /* DXE2 support */
11 #ifdef HAVE_DXE2
12 #define HAVE_OS_INIT
13 #define TRY_UNDERSCORE
14 #define SNOLIB_FILE "snolib.dxe"
15 #define SO_EXT ".dxe"
16 #define DL_EXT ".dxe"
17 /* XXX need more defines for SO/DL builds? */
18 #endif /* HAVE_DXE2 defined */
19 
20 /* WATTCP support */
21 #ifdef HAVE_WATTCP
22 #define FOLD_HOSTNAMES
23 #define SOCKLEN_T int
24 #endif /* HAVE_WATTCP defined */
25 
26 #define PATH_SEP	";"
27 #define DIR_SEP		"\\"
28 #define OBJECT_EXT	".o"
29 #define SETUP_SYS	"djgpp"
30 #define CC_IS		"gcc"
31