]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix description of AC_CHECK_LIB regarding other deplibs.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 13 Sep 2009 08:02:43 +0000 (10:02 +0200)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 13 Sep 2009 08:02:43 +0000 (10:02 +0200)
* doc/autoconf.texi (Libraries): Library linking may not fail
even without missing additional libs.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
doc/autoconf.texi

index 9173cb3bfa9aecc787505922d0f4270c24670a02..082c8034885bd966fdf912d9d57b0ee6ee1b3e5f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       Fix description of AC_CHECK_LIB regarding other deplibs.
+       * doc/autoconf.texi (Libraries): Library linking may not fail
+       even without missing additional libs.
+
 2009-09-12  Eric Blake  <ebb9@byu.net>
 
        Track recent copyright assignments.
index 47645597420484cf61475a9a17c2774eb27bc6c6..72ebde0e1ef18c6cc033c6a5dcdea1ef7119e0f2 100644 (file)
@@ -4317,9 +4317,9 @@ detection of libraries.
 If linking with @var{library} results in unresolved symbols that would
 be resolved by linking with additional libraries, give those libraries
 as the @var{other-libraries} argument, separated by spaces:
-e.g., @option{-lXt -lX11}.  Otherwise, this macro fails to detect
-that @var{library} is present, because linking the test program
-always fails with unresolved symbols.  The @var{other-libraries} argument
+e.g., @option{-lXt -lX11}.  Otherwise, this macro may fail to detect
+that @var{library} is present, because linking the test program can
+fail with unresolved symbols.  The @var{other-libraries} argument
 should be limited to cases where it is desirable to test for one library
 in the presence of another that is not already in @code{LIBS}.