]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* config/ltmain.m4sh (func_mode_finish): Mention crle(1) on
authorGary V. Vaughan <gary@gnu.org>
Wed, 13 Oct 2004 16:04:09 +0000 (16:04 +0000)
committerGary V. Vaughan <gary@gnu.org>
Wed, 13 Oct 2004 16:04:09 +0000 (16:04 +0000)
solaris 2.7 and higher in the finalisation notes.
Reported by Kurt J. Lidl <lidl@pix.net>

ChangeLog
config/ltmain.m4sh

index ce75699ea0a5626d210db6322ac7ea4bc1cc6e6f..15db33bbe00f2f5033507be8dbbe9685d2431a6e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2004-10-13  Gary V. Vaughan  <gary@gnu.org>
 
+       * config/ltmain.m4sh (func_mode_finish): Mention crle(1) on
+       solaris 2.7 and higher in the finalisation notes.
+       Reported by Kurt J. Lidl <lidl@pix.net>
+
        * tests/cdemo-undef.test: New test for hosts that allow shared
        libraries with undefined symbols, but have no C++ compiler
        installed.
@@ -40,7 +44,7 @@
 
 2004-10-10  Charles Wilson  <spam.protected>
 
-       * config/ltmain.m4sh: Really don't require versions of GNU 
+       * config/ltmain.m4sh: Really don't require versions of GNU
        sed newer than 3.02 for Cygwin and MinGW, and don't break
        dryrun mode.
 
index 15213588ff489066f5dfc8fb84895f85f8eac002..c85f8dcb978bfec7985cf711e0a16dc78243db5c 100644 (file)
@@ -1612,8 +1612,17 @@ func_mode_finish ()
       $ECHO "   - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
     fi
     $ECHO
+
     $ECHO "See any operating system documentation about shared libraries for"
-    $ECHO "more information, such as the ld(1) and ld.so(8) manual pages."
+    case $host in
+      solaris2.[789]|solaris2.1[0-9])
+        $ECHO "more information, such as the ld(1), crle(1) and ld.so(8) manual"
+       $ECHO "pages."
+       ;;
+      *)
+        $ECHO "more information, such as the ld(1) and ld.so(8) manual pages."
+        ;;
+    esac
     $ECHO "X----------------------------------------------------------------------" | $Xsed
     exit $EXIT_SUCCESS
 }