changeset 48307:58aeaa1dbcfa

sparc-sun-solaris2.8
author Francesco Potortì <pot@gnu.org>
date Thu, 14 Nov 2002 13:32:32 +0000
parents f2eefebcede8
children ae94ed38415f
files configure.in src/ChangeLog src/s/sol2-8.h
diffstat 3 files changed, 25 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Thu Nov 14 13:29:05 2002 +0000
+++ b/configure.in	Thu Nov 14 13:32:32 2002 +0000
@@ -952,6 +952,11 @@
 		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
--- a/src/ChangeLog	Thu Nov 14 13:29:05 2002 +0000
+++ b/src/ChangeLog	Thu Nov 14 13:32:32 2002 +0000
@@ -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
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/s/sol2-8.h	Thu Nov 14 13:32:32 2002 +0000
@@ -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