diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2011-02-02 13:53:56 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2011-02-02 13:53:56 +0000 |
commit | 11fdd877a5515745a2739c4ee176304998f1e9eb (patch) | |
tree | 77064f0dacf4e41b0172b95a831a880ac8ebdb39 /boehm-gc/configure.ac | |
parent | da285ce8e420f2827fdf855fc97c7c23bd4b6d23 (diff) | |
download | gcc-11fdd877a5515745a2739c4ee176304998f1e9eb.zip gcc-11fdd877a5515745a2739c4ee176304998f1e9eb.tar.gz gcc-11fdd877a5515745a2739c4ee176304998f1e9eb.tar.bz2 |
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
Diffstat (limited to 'boehm-gc/configure.ac')
-rw-r--r-- | boehm-gc/configure.ac | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/boehm-gc/configure.ac b/boehm-gc/configure.ac index 42cd419..61e12aa 100644 --- a/boehm-gc/configure.ac +++ b/boehm-gc/configure.ac @@ -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. # Copyright 2004 Nathanael Nerode # @@ -312,9 +312,12 @@ case "$host" in *) ;; esac -# We never want libdl on darwin. It is a fake libdl that just ends up making -# dyld calls anyway 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*) ;; *) AC_CHECK_LIB(dl, dlopen, EXTRA_TEST_LIBS="$EXTRA_TEST_LIBS -ldl") |