* 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>
This commit is contained in:
Gary V. Vaughan 2004-10-13 16:06:49 +00:00
parent 0af561f564
commit a6949eb270
2 changed files with 15 additions and 2 deletions

View File

@ -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.

View 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
}