mirror of git://gcc.gnu.org/git/gcc.git
configure.ac: Don't use libdl on mips-sgi-irix6*.
* configure.ac: Don't use libdl on mips-sgi-irix6*. * configure: Regenerate. From-SVN: r169521
This commit is contained in:
parent
da285ce8e4
commit
11fdd877a5
|
@ -1,3 +1,8 @@
|
||||||
|
2011-02-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* configure.ac: Don't use libdl on mips-sgi-irix6*.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2011-01-31 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
2011-01-31 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
* configure.ac (*-*-solaris2*): Add -lrt to THREADLIBS.
|
* configure.ac (*-*-solaris2*): Add -lrt to THREADLIBS.
|
||||||
|
|
|
@ -15088,9 +15088,12 @@ fi
|
||||||
*) ;;
|
*) ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# We never want libdl on darwin. It is a fake libdl that just ends up making
|
|
||||||
# dyld calls anyway
|
|
||||||
case "$host" in
|
case "$host" in
|
||||||
|
# While IRIX 6 has libdl for the O32 and N32 ABIs, it's missing for N64
|
||||||
|
# and unnecessary everywhere.
|
||||||
|
mips-sgi-irix6*) ;;
|
||||||
|
# We never want libdl on darwin. It is a fake libdl that just ends up making
|
||||||
|
# dyld calls anyway
|
||||||
*-*-darwin*) ;;
|
*-*-darwin*) ;;
|
||||||
*)
|
*)
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 1999, 2000, 2001, 2002, 2003, 2006, 2010 by Red Hat, Inc.
|
# Copyright (c) 1999, 2000, 2001, 2002, 2003, 2006, 2010, 2011 by Red Hat, Inc.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
# Copyright 2004 Nathanael Nerode
|
# Copyright 2004 Nathanael Nerode
|
||||||
#
|
#
|
||||||
|
@ -312,9 +312,12 @@ case "$host" in
|
||||||
*) ;;
|
*) ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# We never want libdl on darwin. It is a fake libdl that just ends up making
|
|
||||||
# dyld calls anyway
|
|
||||||
case "$host" in
|
case "$host" in
|
||||||
|
# While IRIX 6 has libdl for the O32 and N32 ABIs, it's missing for N64
|
||||||
|
# and unnecessary everywhere.
|
||||||
|
mips-sgi-irix6*) ;;
|
||||||
|
# We never want libdl on darwin. It is a fake libdl that just ends up making
|
||||||
|
# dyld calls anyway
|
||||||
*-*-darwin*) ;;
|
*-*-darwin*) ;;
|
||||||
*)
|
*)
|
||||||
AC_CHECK_LIB(dl, dlopen, EXTRA_TEST_LIBS="$EXTRA_TEST_LIBS -ldl")
|
AC_CHECK_LIB(dl, dlopen, EXTRA_TEST_LIBS="$EXTRA_TEST_LIBS -ldl")
|
||||||
|
|
Loading…
Reference in New Issue