mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-12-15 06:49:57 +08:00
* libltdl/config/ltmain.m4sh (func_mode_link) [*-*-sco3.2v5*]:
Don't pass through -lc, nor add it to deplibs. [*-*-sysv5*]: Ditto. [*-*-openbsd*, *-*-freebsd*, *-*-dragonfly*]: Remove bogus `$arg'.
This commit is contained in:
parent
6352e6effa
commit
f750a60289
@ -1,3 +1,12 @@
|
|||||||
|
2005-11-05 Kean Johnston <jkj@sco.com>,
|
||||||
|
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||||
|
|
||||||
|
* libltdl/config/ltmain.m4sh (func_mode_link) [*-*-sco3.2v5*]:
|
||||||
|
Don't pass through -lc, nor add it to deplibs.
|
||||||
|
[*-*-sysv5*]: Ditto.
|
||||||
|
[*-*-openbsd*, *-*-freebsd*, *-*-dragonfly*]: Remove bogus
|
||||||
|
`$arg'.
|
||||||
|
|
||||||
2005-11-04 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
2005-11-04 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||||
|
|
||||||
* THANKS: Updated.
|
* THANKS: Updated.
|
||||||
|
@ -2613,6 +2613,15 @@ func_mode_link ()
|
|||||||
# Rhapsody C and math libraries are in the System framework
|
# Rhapsody C and math libraries are in the System framework
|
||||||
deplibs="$deplibs System.ltframework"
|
deplibs="$deplibs System.ltframework"
|
||||||
continue
|
continue
|
||||||
|
;;
|
||||||
|
*-*-sco3.2v5* | *-*-sco5v6*)
|
||||||
|
# Causes problems with __ctype
|
||||||
|
test "X$arg" = "X-lc" && continue
|
||||||
|
;;
|
||||||
|
*-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
|
||||||
|
# Compiler inserts libc in the correct place for threads to work
|
||||||
|
test "X$arg" = "X-lc" && continue
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
elif test "X$arg" = "X-lc_r"; then
|
elif test "X$arg" = "X-lc_r"; then
|
||||||
case $host in
|
case $host in
|
||||||
@ -4502,7 +4511,12 @@ func_mode_link ()
|
|||||||
;;
|
;;
|
||||||
*-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
|
*-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
|
||||||
# Do not include libc due to us having libc/libc_r.
|
# Do not include libc due to us having libc/libc_r.
|
||||||
test "X$arg" = "X-lc" && continue
|
;;
|
||||||
|
*-*-sco3.2v5* | *-*-sco5v6*)
|
||||||
|
# Causes problems with __ctype
|
||||||
|
;;
|
||||||
|
*-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
|
||||||
|
# Compiler inserts libc in the correct place for threads to work
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
# Add libc to deplibs on all other systems if necessary.
|
# Add libc to deplibs on all other systems if necessary.
|
||||||
|
Loading…
Reference in New Issue
Block a user