diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-04-28 22:22:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-04-28 22:22:28 +0000 |
commit | edc866c3707090de32df096b8d91772feb42c5b3 (patch) | |
tree | 437b2566438a069958320adf8fe4f5bf6244cc36 /configure1.in | |
parent | 54633da021c4935543e74301baf0d76508bd2326 (diff) | |
download | emacs-edc866c3707090de32df096b8d91772feb42c5b3.tar.gz |
Don't look for -lresolv.
Diffstat (limited to 'configure1.in')
-rwxr-xr-x | configure1.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure1.in b/configure1.in index 40046c2e08d..07428a892c1 100755 --- a/configure1.in +++ b/configure1.in @@ -1384,7 +1384,9 @@ 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) +### This causes -lresolv to get used in subsequent tests, +### which causes failures on some systems such as HPUX 9. +### AC_HAVE_LIBRARY(-lresolv) AC_HAVE_LIBRARY(-lXbsd, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd") |