aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-12-13 14:49:17 +0000
committerRichard M. Stallman1994-12-13 14:49:17 +0000
commitb63df57731cb5aa903590e997945b613e5c3b283 (patch)
tree1c3697d1aaca42af52a4fd531a0722104e1c578b
parentc2854ab558f12c895c8c4a4989abe2d8c382d744 (diff)
downloademacs-b63df57731cb5aa903590e997945b613e5c3b283.tar.gz
emacs-b63df57731cb5aa903590e997945b613e5c3b283.zip
(rs6000-ibm-aix4.1*): New alternative.
(rs6000-ibm-aix4*): New alternative. For SVR4.2, set NON_GNU_CPP if not already set.
-rw-r--r--configure.in14
1 files changed, 12 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index fa79f7ae868..31267bdba25 100644
--- a/configure.in
+++ b/configure.in
@@ -406,6 +406,12 @@ case "${canonical}" in
406 rs6000-ibm-aix3.2.5 | powerpc-ibm-aix3.2.5 ) 406 rs6000-ibm-aix3.2.5 | powerpc-ibm-aix3.2.5 )
407 machine=ibmrs6000 opsys=aix3-2-5 407 machine=ibmrs6000 opsys=aix3-2-5
408 ;; 408 ;;
409 rs6000-ibm-aix4.1* | powerpc-ibm-aix4.1* )
410 machine=ibmrs6000 opsys=aix4-1
411 ;;
412 rs6000-ibm-aix4* | powerpc-ibm-aix4* )
413 machine=ibmrs6000 opsys=aix4
414 ;;
409 rs6000-ibm-aix* | powerpc-ibm-aix* ) 415 rs6000-ibm-aix* | powerpc-ibm-aix* )
410 machine=ibmrs6000 opsys=aix3-2 416 machine=ibmrs6000 opsys=aix3-2
411 ;; 417 ;;
@@ -772,7 +778,11 @@ if test x"${opsys}" = x; then
772 *-sysv4.1 | *-sysvr4.1 ) 778 *-sysv4.1 | *-sysvr4.1 )
773 NON_GNU_CPP=/usr/lib/cpp 779 NON_GNU_CPP=/usr/lib/cpp
774 opsys=usg5-4 ;; 780 opsys=usg5-4 ;;
775 *-sysv4.2 | *-sysvr4.2 ) opsys=usg5-4-2 ;; 781 *-sysv4.2 | *-sysvr4.2 )
782 if [ x$NON_GNU_CPP = x ]; then
783 NON_GNU_CPP=/usr/ccs/lib/cpp
784 fi
785 opsys=usg5-4-2 ;;
776 * ) 786 * )
777 unported=yes 787 unported=yes
778 ;; 788 ;;
@@ -1261,7 +1271,7 @@ changequote([, ])dnl
1261AC_OUTPUT(Makefile lib-src/Makefile.in oldXMenu/Makefile \ 1271AC_OUTPUT(Makefile lib-src/Makefile.in oldXMenu/Makefile \
1262 man/Makefile lwlib/Makefile src/Makefile.in, [ 1272 man/Makefile lwlib/Makefile src/Makefile.in, [
1263 1273
1264### Make necessary directories, if they don't exist. 1274### Make the necessary directories, if they don't exist.
1265for dir in cpp etc ; do 1275for dir in cpp etc ; do
1266 test -d ${dir} || mkdir ${dir} 1276 test -d ${dir} || mkdir ${dir}
1267done 1277done