aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure1.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/configure1.in b/configure1.in
index 6db9e2eb152..48f908bc43f 100755
--- a/configure1.in
+++ b/configure1.in
@@ -640,6 +640,7 @@ case "${configuration}" in
640 *-xenix* ) opsys=xenix ;; 640 *-xenix* ) opsys=xenix ;;
641 *-linux* ) opsys=linux ;; 641 *-linux* ) opsys=linux ;;
642 *-sco3.2v4* ) opsys=sco4 ;; 642 *-sco3.2v4* ) opsys=sco4 ;;
643 *-bsd386* ) opsys=bsd386 ;;
643 ## Otherwise, we'll fall through to the generic opsys code at the bottom. 644 ## Otherwise, we'll fall through to the generic opsys code at the bottom.
644 esac 645 esac
645 ;; 646 ;;
@@ -843,6 +844,7 @@ case "${configuration}" in
843 *-bsd4.1 ) opsys=bsd4-1 ;; 844 *-bsd4.1 ) opsys=bsd4-1 ;;
844 *-bsd4.2 | *-ultrix[0-3].* | *-ultrix4.0 ) opsys=bsd4-2 ;; 845 *-bsd4.2 | *-ultrix[0-3].* | *-ultrix4.0 ) opsys=bsd4-2 ;;
845 *-bsd4.3 | *-ultrix* ) opsys=bsd4-3 ;; 846 *-bsd4.3 | *-ultrix* ) opsys=bsd4-3 ;;
847 *-bsd386 ) opsys=bsd386 ;;
846 *-sysv[01]* | *-sysvr[01]* ) opsys=usg5-0 ;; 848 *-sysv[01]* | *-sysvr[01]* ) opsys=usg5-0 ;;
847 *-sysv2* | *-sysvr2* ) opsys=usg5-2 ;; 849 *-sysv2* | *-sysvr2* ) opsys=usg5-2 ;;
848 *-vms* ) opsys=vms ;; 850 *-vms* ) opsys=vms ;;
@@ -873,7 +875,7 @@ esac
873### operating system is; if you know what operating systems a machine 875### operating system is; if you know what operating systems a machine
874### runs, it's cleaner to make it explicit in the case statement 876### runs, it's cleaner to make it explicit in the case statement
875### above. 877### above.
876if [ ! "${opsys}" ]; then 878if [ x"${opsys}" = x ]; then
877 case "${configuration}" in 879 case "${configuration}" in
878 *-bsd4.[01] ) opsys=bsd4-1 ;; 880 *-bsd4.[01] ) opsys=bsd4-1 ;;
879 *-bsd4.2 ) opsys=bsd4-2 ;; 881 *-bsd4.2 ) opsys=bsd4-2 ;;
@@ -1098,7 +1100,7 @@ if [ "${system_malloc}" = "yes" ]; then
1098 (The GNU allocators don't work with this system configuration.)" 1100 (The GNU allocators don't work with this system configuration.)"
1099fi 1101fi
1100 1102
1101if [ ! "${REL_ALLOC}" ]; then 1103if [ x"${REL_ALLOC}" = x ]; then
1102 REL_ALLOC=${GNU_MALLOC} 1104 REL_ALLOC=${GNU_MALLOC}
1103fi 1105fi
1104 1106
@@ -1108,7 +1110,7 @@ LISP_FLOAT_TYPE=yes
1108#### Find out which version of Emacs this is. 1110#### Find out which version of Emacs this is.
1109version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \ 1111version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
1110 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\)\..*$/\1/'` 1112 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\)\..*$/\1/'`
1111if [ ! "${version}" ]; then 1113if [ x"${version}" = x ]; then
1112 echo "${progname}: can't find current emacs version in 1114 echo "${progname}: can't find current emacs version in
1113 \`${srcdir}/lisp/version.el'." >&2 1115 \`${srcdir}/lisp/version.el'." >&2
1114 exit 1 1116 exit 1