aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-03-11 07:08:47 +0000
committerJim Blandy1993-03-11 07:08:47 +0000
commit399c3df8eb2a137a35ae4ccba7dbdb3451d11cda (patch)
tree7b18bd47260dfb6c88b26cdfc0be10533e77a2fa
parent7caa87fe891980329d5a8d86b5d71d8f7caf9bfd (diff)
downloademacs-399c3df8eb2a137a35ae4ccba7dbdb3451d11cda.tar.gz
emacs-399c3df8eb2a137a35ae4ccba7dbdb3451d11cda.zip
* m/intel386.h (LIB_STANDARD): If USG5_4 is #defined, there's no
need to include `-lPW'; that has been merged with `-lc'.
-rw-r--r--src/m/intel386.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/m/intel386.h b/src/m/intel386.h
index 939bf9b81da..254213379dd 100644
--- a/src/m/intel386.h
+++ b/src/m/intel386.h
@@ -154,14 +154,20 @@ NOTE-END */
154#define LIB_STANDARD /lib/386/Slibcfp.a /lib/386/Slibc.a 154#define LIB_STANDARD /lib/386/Slibcfp.a /lib/386/Slibc.a
155#else /* not XENIX */ 155#else /* not XENIX */
156 156
157/* this brings in alloca() if we're using cc */
157#ifdef USG 158#ifdef USG
158#ifndef LIB_STANDARD 159#ifndef LIB_STANDARD
160#ifdef USG5_4
161#define LIB_STANDARD -lc
162#else /* not USG5_4 */
159#define LIB_STANDARD -lPW -lc 163#define LIB_STANDARD -lPW -lc
160#endif 164#endif /* not USG5_4 */
165#endif /* LIB_STANDARD */
166
161#define HAVE_ALLOCA 167#define HAVE_ALLOCA
162#define NO_REMAP 168#define NO_REMAP
163#define TEXT_START 0 169#define TEXT_START 0
164#endif /* USG */ 170#endif /* not USG */
165#endif /* not XENIX */ 171#endif /* not XENIX */
166 172
167#ifdef BSD 173#ifdef BSD