From: Gary V. Vaughan Date: Wed, 13 Oct 2004 16:04:09 +0000 (+0000) Subject: * config/ltmain.m4sh (func_mode_finish): Mention crle(1) on X-Git-Tag: release-1-9f~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22edd131c4c3670d283f545d2caf161b9fefc7af;p=thirdparty%2Flibtool.git * config/ltmain.m4sh (func_mode_finish): Mention crle(1) on solaris 2.7 and higher in the finalisation notes. Reported by Kurt J. Lidl --- diff --git a/ChangeLog b/ChangeLog index ce75699ea..15db33bbe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2004-10-13 Gary V. Vaughan + * config/ltmain.m4sh (func_mode_finish): Mention crle(1) on + solaris 2.7 and higher in the finalisation notes. + Reported by Kurt J. Lidl + * 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 - * 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. diff --git a/config/ltmain.m4sh b/config/ltmain.m4sh index 15213588f..c85f8dcb9 100644 --- a/config/ltmain.m4sh +++ b/config/ltmain.m4sh @@ -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 }