# HG changeset patch # User Francesco Potort # Date 1037280752 0 # Node ID 58aeaa1dbcfadb6b4c400f631521fa6dfe6e560a # Parent f2eefebcede8cca88e43bda5d4ff0a42c4536709 sparc-sun-solaris2.8 diff -r f2eefebcede8 -r 58aeaa1dbcfa configure.in --- 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 diff -r f2eefebcede8 -r 58aeaa1dbcfa src/ChangeLog --- 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` + + * s/sol2-8.h: New file. + 2002-11-14 Kim F. Storm * buffer.c (syms_of_buffer) : Document symbol diff -r f2eefebcede8 -r 58aeaa1dbcfa src/s/sol2-8.h --- /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