]> git.eshelyaron.com Git - emacs.git/commitdiff
Move string.h hack here from alpha.h and make it conditional.
authorDave Love <fx@gnu.org>
Fri, 23 Jun 2000 17:02:15 +0000 (17:02 +0000)
committerDave Love <fx@gnu.org>
Fri, 23 Jun 2000 17:02:15 +0000 (17:02 +0000)
(C_SWITCH_SYSTEM): Use _OSF_SOURCE, not -BSD, which clashes with
_XOPEN_SOURCE.
(WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist, NSIG): Define.
(SOCKLEN_TYPE): Don't define.

src/s/osf1.h

index 2103a8c50e7c1ba056fbc1b15312ae62d2f42617..dd4fc372a643f791f93865df67a14876687ec6a5 100644 (file)
@@ -4,12 +4,23 @@
 
 #define OSF1
 
-/* Define _BSD to tell the include files we're running under
-   the BSD universe and not the SYSV universe.  */
-
+/* The following used to be done, but -BSD loses when _XOPEN_SOURCE
+   gets defined by configure, at least on OSF5.  It's possible this
+   will need to be reverted for earlier versions (for which OSF5 isn't
+   defined).  */
+#if 0
 #define C_SWITCH_SYSTEM        -D_BSD
 #define LIBS_SYSTEM    -lbsd
 
+#else
+
+#define C_SWITCH_SYSTEM        -D_OSF_SOURCE
+#define WAIT_USE_INT
+#define SYS_SIGLIST_DECLARED
+#define sys_siglist __sys_siglist
+#define NSIG __sys_nsig
+#endif /* 0 */
+
 #define GETPGRP_NO_ARG
 
 #define SYSV_SYSTEM_DIR
 
 #define HAVE_TERMIOS
 
-/* Specify the type that the 3rd arg of `accept' points to.  */
-#define SOCKLEN_TYPE int
-
 #ifndef __GNUC__
 /* Optimize, inaccurate debugging.  */
 #define C_DEBUG_SWITCH -g3
 #endif
+
+#ifndef OSF5                   /* fixed in 5.0 */
+/* Hack alert!  For reasons unknown to mankind the string.h file insists
+   on defining bcopy etc. as taking char pointers as arguments.  With
+   Emacs this produces an endless amount of warning which are harmless,
+   but tends to flood the real errors.  This hack works around this problem
+   by not prototyping.  */
+#define bcopy string_h_bcopy
+#define bzero string_h_bzero
+#define bcmp  string_h_bcmp
+#include <string.h>
+#undef bcopy
+#undef bzero
+#undef bcmp
+#endif