aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-08-21 18:48:21 +0000
committerRichard M. Stallman1995-08-21 18:48:21 +0000
commita20435c0616b502acd0243f0f053845990547dae (patch)
tree26ca639ad91c16011beb462f61a9ed7ace222bf5 /src
parent118a98570ee84334fb86bfb69f2dfdda784f0fb2 (diff)
downloademacs-a20435c0616b502acd0243f0f053845990547dae.tar.gz
emacs-a20435c0616b502acd0243f0f053845990547dae.zip
(NO_SOCKETS_IN_FILE_SYSTEM): Defined.
(START_FILES): Defined. (LIB_STANDARD): New definition, details depending on __GNUC__.
Diffstat (limited to 'src')
-rw-r--r--src/s/isc4-1.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/s/isc4-1.h b/src/s/isc4-1.h
index 38732c1bc6b..2f84bac40f6 100644
--- a/src/s/isc4-1.h
+++ b/src/s/isc4-1.h
@@ -9,11 +9,19 @@
9#undef LIBS_SYSTEM 9#undef LIBS_SYSTEM
10#define LIBS_SYSTEM -linet 10#define LIBS_SYSTEM -linet
11 11
12/* uddeborg@carmen.se says we don't need -lPW or -lcposix. */
13#undef LIB_STANDARD
14
15/* uddeborg@carmen.se recommends the rest of this file. */ 12/* uddeborg@carmen.se recommends the rest of this file. */
16 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
17/* We have Posix termios. */ 25/* We have Posix termios. */
18#define HAVE_TERMIOS 26#define HAVE_TERMIOS
19/* According to template.h HAVE_TERMIO and HAVE_TERMIOS shouldn't be */ 27/* According to template.h HAVE_TERMIO and HAVE_TERMIOS shouldn't be */
@@ -21,4 +29,5 @@
21#undef HAVE_TERMIO 29#undef HAVE_TERMIO
22 30
23#define HAVE_SOCKETS 31#define HAVE_SOCKETS
32#define NO_SOCKETS_IN_FILE_SYSTEM
24#define NEED_NET_ERRNO_H 33#define NEED_NET_ERRNO_H