1#include "isc3-0.h"
2
3/* ISC 4.1 has renamed __setostype, but also has fixed the bug
4   for which we needed to call it; so just do nothing.  uddeborg@carmen.se.  */
5#undef EXTRA_INITIALIZE
6
7#define ISC4_1
8
9#undef LIBS_SYSTEM
10#define LIBS_SYSTEM -linet
11
12/* uddeborg@carmen.se recommends the rest of this file.  */
13
14/* A special startup file is used when compiling with Posix. */
15#define START_FILES pre-crt0.o /lib/crtp1.o
16
17/* -lPW is only needed if not using Gcc. */
18#undef LIB_STANDARD
19#if defined (__GNUC__)
20#  define LIB_STANDARD -lcposix -lc /lib/crtn.o
21#else /* !__GNUC__ */
22#  define LIB_STANDARD -lPW -lcposix -lc /lib/crtn.o
23#endif /* !__GNUC__ */
24
25/* We have Posix termios. */
26#define HAVE_TERMIOS
27/* According to template.h HAVE_TERMIO and HAVE_TERMIOS shouldn't be */
28/* defined at the same time. */
29#undef HAVE_TERMIO
30
31/* ISC 4.1 has sys/wait.h but it does not work right.  */
32#undef HAVE_SYS_WAIT_H
33
34/* arch-tag: ec5c77d9-a330-4d93-8117-d2b374531c67
35   (do not change this comment) */
36