aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-03-29 01:41:58 +0000
committerRichard M. Stallman <[email protected]>1993-03-29 01:41:58 +0000
commitd125ae6dd308adc8242667c36b1e5c830956e344 (patch)
tree3ce8b5f016d1b04265658f6ecea06971394fe076 /src
parent55718e15d6caa9822cdfda70e63f8d4d7099181c (diff)
[USG5_4]: Alternate defining of LIBS_SYSTEM,
LIBX11_SYSTEM, HAVE_RANDOM, BSTRING.
Diffstat (limited to 'src')
-rw-r--r--src/m/delta88k.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/m/delta88k.h b/src/m/delta88k.h
index 7270a79e2b..beb9904c4a 100644
--- a/src/m/delta88k.h
+++ b/src/m/delta88k.h
@@ -143,7 +143,11 @@ and this notice must be preserved on all copies. */
* we have the wrong name for networking libs
*/
#undef LIBX11_SYSTEM
+#ifdef USG5_4
+#define LIBX11_SYSTEM -lX11
+#else
#define LIBX11_SYSTEM -lnsl -lbsd
+#endif /* USG5_4 */
/*
* we have Berkeley style <sys/time.h>
@@ -160,8 +164,20 @@ and this notice must be preserved on all copies. */
*/
#define USE_UTIME
+#ifdef USG5_4
+#define LIBS_SYSTEM -lsocket -lnsl
+#else
#define LIBS_SYSTEM -lbsd -lg
+#endif /* USG5_4 */
#define NEED_TERMIOS
#define NO_SIOCTL_H
+
+#ifdef USG5_4
+#ifdef HAVE_X_WINDOWS
+#define HAVE_RANDOM
+#else
+#undef BSTRING
+#endif /* HAVE_X_WINDOWS */
+#endif /* USG5_4 */