]> sourceware.org Git - glibc.git/commitdiff
* configure.in: Also look in $PATH when searching for
authorAndreas Schwab <schwab@suse.de>
Mon, 22 Mar 1999 06:51:09 +0000 (06:51 +0000)
committerAndreas Schwab <schwab@suse.de>
Mon, 22 Mar 1999 06:51:09 +0000 (06:51 +0000)
install-info.  Remove autoconf bug workaround and require autoconf
2.13.
Mon Mar 22 15:48:06 1999  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

* configure.in: Also look in $PATH when searching for
  install-info.  Remove autoconf bug workaround and require autoconf
  2.13.

ChangeLog
FAQ.in
configure.in
elf/Makefile

index 529012145660d82049c488fdf70be79d4893005b..2e6f9ca649996d7fae15eb087ce94d51862451c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Mar 22 15:48:06 1999  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
+
+       * configure.in: Also look in $PATH when searching for
+       install-info.  Remove autoconf bug workaround and require autoconf
+       2.13.
+
 1999-03-21  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
 
        * db/Makefile: Don't try to install shared library link if not
diff --git a/FAQ.in b/FAQ.in
index ab42dc59243e8da15faf3d6b38cae44d5cf23b96..b0d5d0c14d09a865cf4ab22e1140194ff5e29049 100644 (file)
--- a/FAQ.in
+++ b/FAQ.in
@@ -437,8 +437,9 @@ functions together with glibc.
 
 The functions are available, as an add-on (see ?addon).  People in the US
 may get it from the same place they got GNU libc from.  People outside the
-US should get the code from ftp://ftp.ifi.uio.no/pub/gnu, or another archive
-site outside the USA.  The README explains how to install the sources.
+US should get the code from ftp.funet.fi [128.214.248.6] in the directory
+pub/gnu/funet, or another archive site outside the USA.  The README explains
+how to install the sources.
 
 If you already have the crypt code on your system the reason for the failure
 is probably that you did not link with -lcrypt.  The crypto functions are in
index 40ed517fcf35210b904a5ebad2be1daac931ea42..7a639231a8d04993134ce1e0a1678b189aae2266 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 AC_REVISION([$CVSid$])
-AC_PREREQ(2.11)dnl             dnl Minimum Autoconf version required.
+AC_PREREQ(2.13)dnl             dnl Minimum Autoconf version required.
 AC_INIT(include/features.h)
 AC_CONFIG_HEADER(config.h)
 AC_CONFIG_AUX_DIR(scripts)
@@ -561,9 +561,8 @@ AC_SUBST(libc_cv_have_ksh)
 AC_PROG_AWK
 AC_PATH_PROG(PERL, perl, no)
 AC_SUBST(PERL)
-dnl This works around a bug in autoconf.
-install_info_path=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin
-AC_PATH_PROG(INSTALL_INFO, install-info, no, $install_info_path)
+AC_PATH_PROG(INSTALL_INFO, install-info, no,
+            $PATH:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin)
 AC_SUBST(INSTALL_INFO)
 if test "$INSTALL_INFO" != "no"; then
 AC_CACHE_CHECK(for old Debian install-info, libc_cv_old_debian_install_info,
index 5236165e2adcf093dca2fc0596a4374888949354..a791ffdbc0be09700fe9df026b57025da296d133 100644 (file)
@@ -77,7 +77,9 @@ others                += ldconfig
 install-rootsbin += ldconfig
 endif
 
+ifeq (yes,$(build-shared))
 tests = loadtest restest1 preloadtest loadfail multiload
+endif
 modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \
                testobj1_1 failobj
 extra-objs += $(modules-names:=.os)
This page took 0.049258 seconds and 5 git commands to generate.