aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-07-25 20:45:55 +0000
committerRichard M. Stallman1994-07-25 20:45:55 +0000
commite9ba01ff3fef4557d44c2af9010e3258290f9c0b (patch)
treef4cc0d74c9bff9f08f861707af92a995bec5295b
parent4622fe48fc0e06e0ac612b1b9bdb3ce826e62f4a (diff)
downloademacs-e9ba01ff3fef4557d44c2af9010e3258290f9c0b.tar.gz
emacs-e9ba01ff3fef4557d44c2af9010e3258290f9c0b.zip
Make "checking..." messages' style consistent.
(HAVE_H_ERRNO): New test.
-rwxr-xr-xconfigure1.in20
1 files changed, 16 insertions, 4 deletions
diff --git a/configure1.in b/configure1.in
index 40696fc8205..14ca8f6a8b9 100755
--- a/configure1.in
+++ b/configure1.in
@@ -449,7 +449,7 @@ done
449#### names of the m/*.h and s/*.h files we should use. 449#### names of the m/*.h and s/*.h files we should use.
450 450
451### Canonicalize the configuration name. 451### Canonicalize the configuration name.
452echo "Checking the configuration name." 452echo "Checking the configuration name"
453if canonical=`${srcdir}/config.sub "${configuration}"` ; then : ; else 453if canonical=`${srcdir}/config.sub "${configuration}"` ; then : ; else
454 exit $? 454 exit $?
455fi 455fi
@@ -1201,7 +1201,7 @@ dnl other checks for UNIX variants
1201[ 1201[
1202 1202
1203#### Choose a window system. 1203#### Choose a window system.
1204echo "Checking window system." 1204echo "checking for specified window system"
1205 1205
1206window_system='' 1206window_system=''
1207case "${with_x}" in 1207case "${with_x}" in
@@ -1333,9 +1333,9 @@ esac
1333 1333
1334#### Extract some information from the operating system and machine files. 1334#### Extract some information from the operating system and machine files.
1335 1335
1336echo "Examining the machine- and system-dependent files to find out" 1336echo "examining the machine- and system-dependent files to find out"
1337echo " - which libraries the lib-src programs will want, and" 1337echo " - which libraries the lib-src programs will want, and"
1338echo " - whether the GNU malloc routines are usable." 1338echo " - whether the GNU malloc routines are usable"
1339 1339
1340### First figure out CFLAGS (which we use for running the compiler here) 1340### First figure out CFLAGS (which we use for running the compiler here)
1341### and REAL_CFLAGS (which we use for real compilation). 1341### and REAL_CFLAGS (which we use for real compilation).
@@ -1501,6 +1501,18 @@ fail;
1501 AC_DEFINE(HAVE_X11XTR6)) 1501 AC_DEFINE(HAVE_X11XTR6))
1502fi 1502fi
1503 1503
1504# If netdb.h doesn't declare h_errno, we must declare it by hand.
1505AC_COMPILE_CHECK(declaration of h_errno in netdb.h,
1506 [#include <netdb.h>],
1507 [
1508int
1509foo ()
1510{
1511 return h_errno;
1512}
1513],
1514 AC_DEFINE(HAVE_H_ERRNO))
1515
1504AC_ALLOCA 1516AC_ALLOCA
1505 1517
1506# logb and frexp are found in -lm on most systems. 1518# logb and frexp are found in -lm on most systems.