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
+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
+/* 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