diff options
author | Thiemo Seufer <ths@networkno.de> | 2008-04-14 19:58:48 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2008-04-14 19:58:48 +0000 |
commit | c5cb844243e6f18fe7bda3688e1c918f4c7e21be (patch) | |
tree | dd32d458ec0ac66131b122d2b834a3849925d3de /bfd/configure.in | |
parent | aa11fd3fc49287c58a04f7b84be0eee10bafef68 (diff) | |
download | gdb-c5cb844243e6f18fe7bda3688e1c918f4c7e21be.zip gdb-c5cb844243e6f18fe7bda3688e1c918f4c7e21be.tar.gz gdb-c5cb844243e6f18fe7bda3688e1c918f4c7e21be.tar.bz2 |
* configure.in: Link with the PIC version of libiberty on
Linux/MIPS hosts.
* configure: Regenerate.
Diffstat (limited to 'bfd/configure.in')
-rw-r--r-- | bfd/configure.in | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/bfd/configure.in b/bfd/configure.in index 99ea584..947f79d 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -492,22 +492,12 @@ case "${host}" in *-*-linux*) # We borrow WIN32LIBADD so that the shared libbfd won't depend on # libiberty.a. - case "${host}" in - mips*-*-linux*) - # Linux/MIPS uses PIC by default. - if test "$enable_shared" = "yes"; then - WIN32LIBADD="-L../libiberty -liberty" - fi - ;; - *) changequote(,)dnl - x=`sed -n -e 's/^[ ]*PICFLAG[ ]*=[ ]*//p' < ../libiberty/Makefile | sed -n '$p'` + x=`sed -n -e 's/^[ ]*PICFLAG[ ]*=[ ]*//p' < ../libiberty/Makefile | sed -n '$p'` changequote([,])dnl - if test -n "$x"; then - WIN32LIBADD="-L../libiberty/pic -liberty" - fi - ;; - esac + if test -n "$x"; then + WIN32LIBADD="-L../libiberty/pic -liberty" + fi ;; esac AC_SUBST(WIN32LDFLAGS) |