mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-01 11:14:55 +00:00
sparc-sun-solaris2.8
This commit is contained in:
parent
816753a76d
commit
407fa60182
@ -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
|
||||
|
@ -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
|
||||
|
16
src/s/sol2-8.h
Normal file
16
src/s/sol2-8.h
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user