Initial revision
[emacs.git] / src / s / isc4-0.h
bloba52e0d821ef61c305a536b700de0f11ece6bd969
1 #include "isc3-0.h"
3 #undef LIBS_SYSTEM
4 #ifdef HAVE_X_WINDOWS
5 #define LIBS_SYSTEM -linet -lcposix
6 #else
7 #define LIBS_SYSTEM -lcposix
8 #endif
10 #define ISC4_0
12 /* fmcphers@csugrad.cs.vt.edu reported this was necessary.
13 He used GCC. I don't know what is needed with other compilers. */
14 #ifdef __GNUC__
15 #undef LIBX11_SYSTEM
16 #define LIBX11_SYSTEM -lpt -lnls -lnsl_s -lcposix -lc
17 #endif
19 /* Tobias Herbert <herbert@clipper.ikp.physik.th-darmstadt.de>
20 says this is needed. */
22 #ifndef sigblock
23 #ifndef SIG_BLOCK
24 #define SIG_BLOCK 0
25 #endif
26 #define sigblock(sig) (sigprocmask (SIG_BLOCK, SIGEMPTYMASK | sig, NULL))
27 #endif