diff options
| author | Richard M. Stallman | 1994-07-25 20:45:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-07-25 20:45:55 +0000 |
| commit | e9ba01ff3fef4557d44c2af9010e3258290f9c0b (patch) | |
| tree | f4cc0d74c9bff9f08f861707af92a995bec5295b | |
| parent | 4622fe48fc0e06e0ac612b1b9bdb3ce826e62f4a (diff) | |
| download | emacs-e9ba01ff3fef4557d44c2af9010e3258290f9c0b.tar.gz emacs-e9ba01ff3fef4557d44c2af9010e3258290f9c0b.zip | |
Make "checking..." messages' style consistent.
(HAVE_H_ERRNO): New test.
| -rwxr-xr-x | configure1.in | 20 |
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. |
| 452 | echo "Checking the configuration name." | 452 | echo "Checking the configuration name" |
| 453 | if canonical=`${srcdir}/config.sub "${configuration}"` ; then : ; else | 453 | if canonical=`${srcdir}/config.sub "${configuration}"` ; then : ; else |
| 454 | exit $? | 454 | exit $? |
| 455 | fi | 455 | fi |
| @@ -1201,7 +1201,7 @@ dnl other checks for UNIX variants | |||
| 1201 | [ | 1201 | [ |
| 1202 | 1202 | ||
| 1203 | #### Choose a window system. | 1203 | #### Choose a window system. |
| 1204 | echo "Checking window system." | 1204 | echo "checking for specified window system" |
| 1205 | 1205 | ||
| 1206 | window_system='' | 1206 | window_system='' |
| 1207 | case "${with_x}" in | 1207 | case "${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 | ||
| 1336 | echo "Examining the machine- and system-dependent files to find out" | 1336 | echo "examining the machine- and system-dependent files to find out" |
| 1337 | echo " - which libraries the lib-src programs will want, and" | 1337 | echo " - which libraries the lib-src programs will want, and" |
| 1338 | echo " - whether the GNU malloc routines are usable." | 1338 | echo " - 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)) |
| 1502 | fi | 1502 | fi |
| 1503 | 1503 | ||
| 1504 | # If netdb.h doesn't declare h_errno, we must declare it by hand. | ||
| 1505 | AC_COMPILE_CHECK(declaration of h_errno in netdb.h, | ||
| 1506 | [#include <netdb.h>], | ||
| 1507 | [ | ||
| 1508 | int | ||
| 1509 | foo () | ||
| 1510 | { | ||
| 1511 | return h_errno; | ||
| 1512 | } | ||
| 1513 | ], | ||
| 1514 | AC_DEFINE(HAVE_H_ERRNO)) | ||
| 1515 | |||
| 1504 | AC_ALLOCA | 1516 | AC_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. |