aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-07-01 20:03:39 +0000
committerRichard M. Stallman1995-07-01 20:03:39 +0000
commitb95c8e7e3efc3f426800fca847f461b373a99153 (patch)
treef1b509c9f62abf711dd47a16a9e44326169e0af7
parentf6e0680c88750eaaf8c5cb0a2db868cad8f6e861 (diff)
downloademacs-b95c8e7e3efc3f426800fca847f461b373a99153.tar.gz
emacs-b95c8e7e3efc3f426800fca847f461b373a99153.zip
Use sunos4shr normally for Sunos 4.1.[3-9].
(mips-mips-riscos5*): New alternative. (bindir, datadir, sharedstatedir, libexecdir) (mandir, infodir, archlibdir): Initializations deleted. On hpux9, use hpux9-x11r4.h if we have X11R4. On hpux9shr, use hpux9shxr4.h. Added target mips-dec-mach_bsd4.3.
-rw-r--r--configure.in34
1 files changed, 26 insertions, 8 deletions
diff --git a/configure.in b/configure.in
index 1e5dfba7ad2..a93eedf9d8c 100644
--- a/configure.in
+++ b/configure.in
@@ -6,18 +6,11 @@ AC_PREREQ(2.0)dnl
6AC_INIT(src/lisp.h) 6AC_INIT(src/lisp.h)
7AC_CONFIG_HEADER(src/config.h) 7AC_CONFIG_HEADER(src/config.h)
8 8
9bindir='${exec_prefix}/bin'
10datadir='${prefix}/share'
11sharedstatedir='${prefix}/com'
12libexecdir='${exec_prefix}/libexec'
13mandir='${prefix}/man/man1'
14infodir='${prefix}/info'
15lispdir='${datadir}/emacs/${version}/lisp' 9lispdir='${datadir}/emacs/${version}/lisp'
16locallisppath='${datadir}/emacs/site-lisp' 10locallisppath='${datadir}/emacs/site-lisp'
17lisppath='${locallisppath}:${lispdir}' 11lisppath='${locallisppath}:${lispdir}'
18etcdir='${datadir}/emacs/${version}/etc' 12etcdir='${datadir}/emacs/${version}/etc'
19lockdir='${sharedstatedir}/emacs/lock' 13lockdir='${sharedstatedir}/emacs/lock'
20archlibdir='${libexecdir}/emacs/${version}/${configuration}'
21docdir='${datadir}/emacs/${version}/etc' 14docdir='${datadir}/emacs/${version}/etc'
22 15
23AC_ARG_WITH(gcc, 16AC_ARG_WITH(gcc,
@@ -271,6 +264,9 @@ case "${canonical}" in
271 mips-dec-osf* ) 264 mips-dec-osf* )
272 machine=pmax opsys=osf1 265 machine=pmax opsys=osf1
273 ;; 266 ;;
267 mips-dec-mach_bsd4.3* )
268 machine=pmax opsys=mach-bsd4-3
269 ;;
274 270
275 ## Motorola Delta machines 271 ## Motorola Delta machines
276 m68k-motorola-sysv* | m68000-motorola-sysv* ) 272 m68k-motorola-sysv* | m68000-motorola-sysv* )
@@ -529,6 +525,11 @@ case "${canonical}" in
529 NON_GNU_CC="cc -systype bsd43" 525 NON_GNU_CC="cc -systype bsd43"
530 NON_GNU_CPP="cc -systype bsd43 -E" 526 NON_GNU_CPP="cc -systype bsd43 -E"
531 ;; 527 ;;
528 mips-mips-riscos5* )
529 machine=mips4 opsys=riscos5
530 NON_GNU_CC="cc -systype bsd43"
531 NON_GNU_CPP="cc -systype bsd43 -E"
532 ;;
532 mips-mips-bsd* ) 533 mips-mips-bsd* )
533 machine=mips opsys=bsd4-3 534 machine=mips opsys=bsd4-3
534 ;; 535 ;;
@@ -653,7 +654,8 @@ case "${canonical}" in
653 ## The Sun386 didn't get past 4.0. 654 ## The Sun386 didn't get past 4.0.
654 i[345]86-*-sunos4 ) opsys=sunos4-0 ;; 655 i[345]86-*-sunos4 ) opsys=sunos4-0 ;;
655 *-sunos4.0* ) opsys=sunos4-0 ;; 656 *-sunos4.0* ) opsys=sunos4-0 ;;
656 *-sunos4.1.[3-9]* | *-sunos4shr* ) opsys=sunos4shr 657 *-sunos4.1.[3-9]* )
658 opsys=sunos4shr
657 NON_GNU_CPP=/usr/lib/cpp 659 NON_GNU_CPP=/usr/lib/cpp
658 ;; 660 ;;
659 *-sunos4* | *-sunos ) opsys=sunos4-1 661 *-sunos4* | *-sunos ) opsys=sunos4-1
@@ -989,6 +991,22 @@ case ${HAVE_X11} in
989 yes ) HAVE_X_MENU=yes ;; 991 yes ) HAVE_X_MENU=yes ;;
990esac 992esac
991 993
994if test "${opsys}" = "hpux9"; then
995 case "${x_libraries}" in
996 *X11R4* )
997 opsysfile="s/hpux9-x11r4.h"
998 ;;
999 esac
1000fi
1001
1002if test "${opsys}" = "hpux9shr"; then
1003 case "${x_libraries}" in
1004 *X11R4* )
1005 opsysfile="s/hpux9shxr4.h"
1006 ;;
1007 esac
1008fi
1009
992#### Extract some information from the operating system and machine files. 1010#### Extract some information from the operating system and machine files.
993 1011
994AC_CHECKING([the machine- and system-dependent files to find out 1012AC_CHECKING([the machine- and system-dependent files to find out