]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
Avoid mentioning "Linux", use "GNU/Linux", if appropriate.
authorCristophe Jarry <christophe.jarry@ouvaton.org>
Sun, 25 Sep 2011 22:39:04 +0000 (17:39 -0500)
committerPeter O'Gorman <peter@pogma.com>
Sun, 25 Sep 2011 22:49:43 +0000 (17:49 -0500)
* TODO: Don't use bare "Linux".
* doc/libtool.texi: ditto.
* doc/notes.texi: ditto.
* libltdl/README: ditto.
* libltdl/m4/libtool.m4: ditto.

ChangeLog
TODO
doc/libtool.texi
doc/notes.texi
libltdl/README
libltdl/m4/libtool.m4

index 44b325b04044f628bd0a2b1068ce747279572c32..d3e6e7db36f2be4467e796c158d3df2b78348376 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2011-09-25  Cristophe Jarry <christophe.jarry@ouvaton.org>
+
+       Avoid mentioning "Linux", use "GNU/Linux", if appropriate.
+       * TODO: Don't use bare "Linux".
+       * doc/libtool.texi: ditto.
+       * doc/notes.texi: ditto.
+       * libltdl/README: ditto.
+       * libltdl/m4/libtool.m4: ditto.
+
 2011-09-01  Peter O'Gorman  <peter@pogma.com>
 
        Add flag to inhibit warnings.
diff --git a/TODO b/TODO
index ee4303758a6691cc59ebd6e595b76d12a27c741b..acdf05cfbf9dfddf379074db7021759f26751d9c 100644 (file)
--- a/TODO
+++ b/TODO
@@ -58,7 +58,7 @@ GNU Libtool
 
 * Audit file listing in libtool.m4.
 
-* Fix deplibs_check_method=pass_all (which is wrong!) on linux.
+* Fix deplibs_check_method=pass_all (which is wrong!) on GNU/Linux.
 
 * Fix -dlopen "self" on AIX.  Reported by Gary Kumfert <kumfert@llnl.gov>.
 
@@ -290,15 +290,15 @@ GNU Libtool
     and central_unixish_to_mingw would still do all the work (with its guts
     customized based on $build).
 
-    For more reasonable cross environments (e.g. linux->some_embedded) I think
-    you could probably work out a general M+N scheme, since most embedded $hosts
-    aren't as strange as the win32 variants -- even VxWorks and INTEGRITY have
-    basic, unix-like file systems (although INTEGRITY does have multiple roots).
-    Aggressive use of the m4 function_replace machinery WOULD be appropriate for
-    /these/ conversion functions.  OTOH...(a) you can't run the $host apps on
-    $build anyway, in these embedded situations. At best you'd use $TARGETSHELL
-    and "run" them via a remote connection, and (b) they don't use the C
-    wrapper!
+    For more reasonable cross environments (e.g. linux-gnu->some_embedded) I
+    think you could probably work out a general M+N scheme, since most embedded
+    $hosts aren't as strange as the win32 variants -- even VxWorks and INTEGRITY
+    have basic, unix-like file systems (although INTEGRITY does have multiple
+    roots). Aggressive use of the m4 function_replace machinery WOULD be
+    appropriate for /these/ conversion functions.  OTOH...(a) you can't run the
+    $host apps on $build anyway, in these embedded situations. At best you'd use
+    $TARGETSHELL and "run" them via a remote connection, and (b) they don't use
+    the C wrapper!
 
     So...I don't think it makes much difference *right now* in the amount of
     code required, or the number of functions implemented. At some point in the
index 72bb0fcff0dfddc459273fb23f20e2706c7d9185..d6fc53dd4f6ddde91e87880dff4e46bf06cf3667 100644 (file)
@@ -3784,7 +3784,7 @@ libltdl supports currently the following dynamic linking mechanisms:
 
 @itemize @bullet
 @item
-@code{dlopen} (Solaris, Linux and various BSD flavors)
+@code{dlopen} (POSIX compliant systems, GNU/Linux, etc.)
 @item
 @code{shl_load} (HP-UX)
 @item
@@ -3823,7 +3823,7 @@ distribution terms that you use for the rest of that program.
 @section How to use libltdl in your programs
 
 @noindent
-The libltdl API is similar to the dlopen interface of Solaris and Linux,
+The libltdl API is similar to the POSIX dlopen interface,
 which is very simple but powerful.
 
 @noindent
@@ -3945,7 +3945,7 @@ This search path is the value of the environment variable
 
 @item system library search path:
 The system dependent library search path
-(e.g.@: on Linux it is @env{LD_LIBRARY_PATH}).
+(e.g.@: on GNU/Linux it is @env{LD_LIBRARY_PATH}).
 @end enumerate
 
 Each search path must be a list of absolute directories separated by
@@ -5372,7 +5372,7 @@ uninstalled correctly.
 The @file{tests/mdemo} subdirectory contains a demonstration of a
 package that uses libtool and the system independent dlopen wrapper
 @file{libltdl} to load modules.  The library @file{libltdl} provides a
-dlopen wrapper for various platforms (Linux, Solaris, HP/UX etc.)
+dlopen wrapper for various platforms (POSIX)
 including support for dlpreopened modules (@pxref{Dlpreopening}).
 
 The tests matching @file{mdemo-*make.test}, @file{mdemo-*exec.test},
index 44b50d13e968a400bd9d9dadb65e95b2bdfa47a8..57fc6d5de38fe76a0f99fbe70326489b5adb500e 100644 (file)
@@ -68,7 +68,7 @@ to use autoconf-mode, which is distributed with GNU Emacs 21, Autoconf itself,
 and all recent releases of XEmacs.
 
 @item
-When building on some linux systems for multilib targets
+When building on some GNU/Linux systems for multilib targets
 @command{libtool} sometimes guesses the wrong paths that the linker
 and dynamic linker search by default. If this occurs, you may override
 libtool's guesses at @command{configure} time by setting the
index 54b1aea871738dce2ef920f612c43bc255cef072..90a0aef9ba724992b9fd6cd132972864b4d3968a 100644 (file)
@@ -1,15 +1,15 @@
 This is GNU libltdl, a system independent dlopen wrapper for GNU libtool.
 
 It supports the following dlopen interfaces:
-* dlopen (Solaris, Linux and various BSD flavors)
+* dlopen (POSIX)
 * shl_load (HP-UX)
 * LoadLibrary (Win16 and Win32)
 * load_add_on (BeOS)
 * GNU DLD (emulates dynamic linking for static libraries)
 * dyld (darwin/Mac OS X)
 * libtool's dlpreopen
--- 
-   Copyright (C) 1999, 2003 Free Software Foundation, Inc.
+--
+   Copyright (C) 1999, 2003, 2011 Free Software Foundation, Inc.
    Written by Thomas Tanner, 1999
 
    This file is part of GNU Libtool.
index 2ed41b7a3b189ce894505da418e745a1d87f0d32..350fbe174a127154955e6aac82b91ede9927dcce 100644 (file)
@@ -2638,7 +2638,7 @@ linux*oldld* | linux*aout* | linux*coff*)
   dynamic_linker=no
   ;;
 
-# This must be Linux ELF.
+# This must be glibc/ELF.
 linux* | k*bsd*-gnu | kopensolaris*-gnu)
   version_type=linux
   need_lib_prefix=no
@@ -3284,7 +3284,7 @@ irix5* | irix6* | nonstopux*)
   lt_cv_deplibs_check_method=pass_all
   ;;
 
-# This must be Linux ELF.
+# This must be glibc/ELF.
 linux* | k*bsd*-gnu | kopensolaris*-gnu)
   lt_cv_deplibs_check_method=pass_all
   ;;