]> code.delx.au - gnu-emacs/commitdiff
sparc-sun-solaris2.8
authorFrancesco Potortì <pot@gnu.org>
Thu, 14 Nov 2002 13:32:32 +0000 (13:32 +0000)
committerFrancesco Potortì <pot@gnu.org>
Thu, 14 Nov 2002 13:32:32 +0000 (13:32 +0000)
configure.in
src/ChangeLog
src/s/sol2-8.h [new file with mode: 0644]

index 652d2c1dcb3ceb0a6913357b5435fdfc4521c861..84a332b080c58fa616b40a1c827077926c2b310b 100644 (file)
@@ -952,6 +952,11 @@ case "${canonical}" in
                NON_GNU_CPP=/usr/ccs/lib/cpp
                RANLIB="ar -ts"
                ;;
+      *-sunos5.8* | *-solaris2.8* )
+               opsys=sol2-8
+               NON_GNU_CPP=/usr/ccs/lib/cpp
+               RANLIB="ar -ts"
+               ;;
       *-sunos5* | *-solaris* )
                opsys=sol2-6
                NON_GNU_CPP=/usr/ccs/lib/cpp
index 0086413e45357efe5a0032fcc3d02a140a75661d..9e5ebc1e11079913e3839d18a8f1ebfee2eddfbb 100644 (file)
@@ -1,3 +1,7 @@
+2002-11-14  Francesco Potorti`  <pot@gnu.org>
+
+       * s/sol2-8.h: New file.
+
 2002-11-14  Kim F. Storm  <storm@cua.dk>
 
        * buffer.c (syms_of_buffer) <mode-line-format>: Document symbol
diff --git a/src/s/sol2-8.h b/src/s/sol2-8.h
new file mode 100644 (file)
index 0000000..6fdb4f2
--- /dev/null
@@ -0,0 +1,16 @@
+/* Handle Solaris 2.8.  */
+
+#include "sol2-5.h"
+
+/* Redundant but differing definitions for bcopy, bcmp, and bzero are
+   causing problems.  Get rid of the emacs overrides for these. */
+
+#ifdef bcopy
+#undef bcopy
+#endif
+#ifdef bcmp
+#undef bcmp
+#endif
+#ifdef bzero
+#undef bzero
+#endif