1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-02 20:16:25 +00:00

Test for libresolv.a.

Substitute machfile and opsysfile.

(version): Use entire value of emacs-version.
(mips-siemens-sysv*): New alternative.
This commit is contained in:
Richard M. Stallman 1994-04-23 06:00:06 +00:00
parent 2a3c6d1150
commit 73e7c7be38

View File

@ -780,25 +780,6 @@ case "${canonical}" in
machine=i860 opsys=usg5-4
;;
## Silicon Graphics machines
## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030)
m68*-sgi-iris3.5* )
machine=irist opsys=iris3-5
;;
m68*-sgi-iris3.6* | m68*-sgi-iris*)
machine=irist opsys=iris3-6
;;
## Iris 4D
mips-sgi-irix3.* )
machine=iris4d opsys=irix3-3
;;
mips-sgi-irix5.* )
machine=iris4d opsys=irix5-0
;;
mips-sgi-irix4.* | mips-sgi-irix* )
machine=iris4d opsys=irix4-0
;;
## Masscomp machines
m68*-masscomp-rtu* )
machine=masscomp opsys=rtu
@ -884,6 +865,32 @@ case "${canonical}" in
machine=sequent opsys=bsd4-3
;;
## Siemens Nixdorf
mips-siemens-sysv* )
machine=mips-siemens opsys=usg5-4
NON_GNU_CC=/usr/ccs/bin/cc
NON_GNU_CPP=/usr/ccs/bin/cc -E
;;
## Silicon Graphics machines
## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030)
m68*-sgi-iris3.5* )
machine=irist opsys=iris3-5
;;
m68*-sgi-iris3.6* | m68*-sgi-iris*)
machine=irist opsys=iris3-6
;;
## Iris 4D
mips-sgi-irix3.* )
machine=iris4d opsys=irix3-3
;;
mips-sgi-irix5.* )
machine=iris4d opsys=irix5-0
;;
mips-sgi-irix4.* | mips-sgi-irix* )
machine=iris4d opsys=irix4-0
;;
## SONY machines
m68*-sony-bsd4.2* )
machine=news opsys=bsd4-2
@ -1376,6 +1383,7 @@ LIBS="$libsrc_libs"
dnl If found, this defines HAVE_LIBDNET, which m/pmax.h checks,
dnl and also adds -ldnet to LIBS, which Autoconf uses for checks.
AC_HAVE_LIBRARY(-ldnet)
AC_HAVE_LIBRARY(-lresolv)
AC_HAVE_LIBRARY(-lXbsd, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd")
@ -1414,7 +1422,7 @@ fi
[
#### Find out which version of Emacs this is.
version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
| sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\)[."].*$/\1/'`
| sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
if [ x"${version}" = x ]; then
echo "${progname}: can't find current emacs version in
\`${srcdir}/lisp/version.el'." >&2
@ -1455,6 +1463,8 @@ AC_SUBST(LD_SWITCH_X_SITE_AUX)
AC_SUBST(C_SWITCH_X_SITE)
AC_SUBST(CFLAGS)
AC_SUBST(X_TOOLKIT_TYPE)
AC_SUBST(machfile)
AC_SUBST(opsysfile)
AC_DEFINE_UNQUOTED(config_machfile, "\"${machfile}\"")
AC_DEFINE_UNQUOTED(config_opsysfile, "\"${opsysfile}\"")