summaryrefslogtreecommitdiff
path: root/configure1.in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-07-25 20:45:55 +0000
committerRichard M. Stallman <rms@gnu.org>1994-07-25 20:45:55 +0000
commite9ba01ff3fef4557d44c2af9010e3258290f9c0b (patch)
treef4cc0d74c9bff9f08f861707af92a995bec5295b /configure1.in
parent4622fe48fc0e06e0ac612b1b9bdb3ce826e62f4a (diff)
downloademacs-e9ba01ff3fef4557d44c2af9010e3258290f9c0b.tar.gz
Make "checking..." messages' style consistent.
(HAVE_H_ERRNO): New test.
Diffstat (limited to 'configure1.in')
-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
#### names of the m/*.h and s/*.h files we should use.
### Canonicalize the configuration name.
-echo "Checking the configuration name."
+echo "Checking the configuration name"
if canonical=`${srcdir}/config.sub "${configuration}"` ; then : ; else
exit $?
fi
@@ -1201,7 +1201,7 @@ dnl other checks for UNIX variants
[
#### Choose a window system.
-echo "Checking window system."
+echo "checking for specified window system"
window_system=''
case "${with_x}" in
@@ -1333,9 +1333,9 @@ esac
#### Extract some information from the operating system and machine files.
-echo "Examining the machine- and system-dependent files to find out"
+echo "examining the machine- and system-dependent files to find out"
echo " - which libraries the lib-src programs will want, and"
-echo " - whether the GNU malloc routines are usable."
+echo " - whether the GNU malloc routines are usable"
### First figure out CFLAGS (which we use for running the compiler here)
### and REAL_CFLAGS (which we use for real compilation).
@@ -1501,6 +1501,18 @@ fail;
AC_DEFINE(HAVE_X11XTR6))
fi
+# If netdb.h doesn't declare h_errno, we must declare it by hand.
+AC_COMPILE_CHECK(declaration of h_errno in netdb.h,
+ [#include <netdb.h>],
+ [
+int
+foo ()
+{
+ return h_errno;
+}
+],
+ AC_DEFINE(HAVE_H_ERRNO))
+
AC_ALLOCA
# logb and frexp are found in -lm on most systems.