# HG changeset patch # User Dave Love # Date 967216851 0 # Node ID 9afdf5b51742070aa8894cfb2eeadc12e9847275 # Parent 0ee53ec2081a7b5a8ec848dcb867fd318b14fd54 : Use NON_GNU_CPP='cpp' always. diff -r 0ee53ec2081a -r 9afdf5b51742 configure.in --- a/configure.in Fri Aug 25 14:35:12 2000 +0000 +++ b/configure.in Fri Aug 25 15:20:51 2000 +0000 @@ -259,11 +259,13 @@ NON_GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib case "${canonical}" in - # This is necessary on 5.0 to avoid mangling src/Makefile. - # Separated out in case it causes problems on earlier versions. - alpha*-dec-osf[5-9]*) - opsys=osf5-0 - NON_GNU_CPP='cpp' ;; + # This is necessary on 5.0 to avoid mangling src/Makefile due to + # non-traditional preprocessing with the current compiler defaults. + # OSF 4 can also have that compiler version, and there seems always + # to have been a usable /usr/bin/cpp. + NON_GNU_CPP='cpp' + alpha*-dec-osf[4-9]*) + opsys=osf5-0 ;; esac ;;