aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-02-18 19:52:52 +0000
committerDave Love2000-02-18 19:52:52 +0000
commite57196a0a18dc0e667dcb6ec817348550453d5aa (patch)
treeea4690b0b10cda94caca443a6b9f46ac2351a136
parentf0b645bfc7a16c88b6f44b48466b719c786d6644 (diff)
downloademacs-e57196a0a18dc0e667dcb6ec817348550453d5aa.tar.gz
emacs-e57196a0a18dc0e667dcb6ec817348550453d5aa.zip
Define NON_GNU_CPP on alpha-dec-osf5+.
-rw-r--r--configure.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 2c999c2ce5f..a8c135c53ee 100644
--- a/configure.in
+++ b/configure.in
@@ -252,6 +252,12 @@ case "${canonical}" in
252 # This is needed to find X11R6.1 libraries for certain tests. 252 # This is needed to find X11R6.1 libraries for certain tests.
253 NON_GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib 253 NON_GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
254 GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib 254 GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
255 case "${canonical}" in
256 # This is necessary on 5.0 to avoid mangling src/Makefile.
257 # Separated out in case it causes problems on earlier versions.
258 alpha*-dec-osf[5-9])
259 NON_GNU_CPP='cc -E -std0' ;;
260 esac
255 ;; 261 ;;
256 262
257 alpha*-*-linux-gnu* ) 263 alpha*-*-linux-gnu* )