diff options
| author | Richard M. Stallman | 1995-07-01 20:03:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-07-01 20:03:39 +0000 |
| commit | b95c8e7e3efc3f426800fca847f461b373a99153 (patch) | |
| tree | f1b509c9f62abf711dd47a16a9e44326169e0af7 | |
| parent | f6e0680c88750eaaf8c5cb0a2db868cad8f6e861 (diff) | |
| download | emacs-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.in | 34 |
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 | |||
| 6 | AC_INIT(src/lisp.h) | 6 | AC_INIT(src/lisp.h) |
| 7 | AC_CONFIG_HEADER(src/config.h) | 7 | AC_CONFIG_HEADER(src/config.h) |
| 8 | 8 | ||
| 9 | bindir='${exec_prefix}/bin' | ||
| 10 | datadir='${prefix}/share' | ||
| 11 | sharedstatedir='${prefix}/com' | ||
| 12 | libexecdir='${exec_prefix}/libexec' | ||
| 13 | mandir='${prefix}/man/man1' | ||
| 14 | infodir='${prefix}/info' | ||
| 15 | lispdir='${datadir}/emacs/${version}/lisp' | 9 | lispdir='${datadir}/emacs/${version}/lisp' |
| 16 | locallisppath='${datadir}/emacs/site-lisp' | 10 | locallisppath='${datadir}/emacs/site-lisp' |
| 17 | lisppath='${locallisppath}:${lispdir}' | 11 | lisppath='${locallisppath}:${lispdir}' |
| 18 | etcdir='${datadir}/emacs/${version}/etc' | 12 | etcdir='${datadir}/emacs/${version}/etc' |
| 19 | lockdir='${sharedstatedir}/emacs/lock' | 13 | lockdir='${sharedstatedir}/emacs/lock' |
| 20 | archlibdir='${libexecdir}/emacs/${version}/${configuration}' | ||
| 21 | docdir='${datadir}/emacs/${version}/etc' | 14 | docdir='${datadir}/emacs/${version}/etc' |
| 22 | 15 | ||
| 23 | AC_ARG_WITH(gcc, | 16 | AC_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 ;; |
| 990 | esac | 992 | esac |
| 991 | 993 | ||
| 994 | if test "${opsys}" = "hpux9"; then | ||
| 995 | case "${x_libraries}" in | ||
| 996 | *X11R4* ) | ||
| 997 | opsysfile="s/hpux9-x11r4.h" | ||
| 998 | ;; | ||
| 999 | esac | ||
| 1000 | fi | ||
| 1001 | |||
| 1002 | if test "${opsys}" = "hpux9shr"; then | ||
| 1003 | case "${x_libraries}" in | ||
| 1004 | *X11R4* ) | ||
| 1005 | opsysfile="s/hpux9shxr4.h" | ||
| 1006 | ;; | ||
| 1007 | esac | ||
| 1008 | fi | ||
| 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 | ||
| 994 | AC_CHECKING([the machine- and system-dependent files to find out | 1012 | AC_CHECKING([the machine- and system-dependent files to find out |