OSDN Git Service

* configure.in: Link with the PIC version of libiberty on
authorths <ths>
Mon, 14 Apr 2008 19:58:48 +0000 (19:58 +0000)
committerths <ths>
Mon, 14 Apr 2008 19:58:48 +0000 (19:58 +0000)
Linux/MIPS hosts.
* configure: Regenerate.

bfd/ChangeLog
bfd/configure
bfd/configure.in

index 9614a83..5726af5 100644 (file)
@@ -1,3 +1,9 @@
+2008-04-14  Aurelien Jarno  <aurelien@aurel32.net>
+
+       * configure.in: Link with the PIC version of libiberty on
+       Linux/MIPS hosts.
+       * configure: Regenerate.
+
 2008-04-14  Edmar Wienskoski  <edmar@freescale.com>
 
        * archures.c: Add bfd_mach_ppc_e500mc.
index ab6c3e7..a3eeaa5 100755 (executable)
@@ -18909,20 +18909,10 @@ 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
-    ;;
-  *)
-    x=`sed -n -e 's/^[         ]*PICFLAG[      ]*=[    ]*//p' < ../libiberty/Makefile | sed -n '$p'`
-    if test -n "$x"; then
-      WIN32LIBADD="-L../libiberty/pic -liberty"
-    fi
-  ;;
-  esac
+  x=`sed -n -e 's/^[   ]*PICFLAG[      ]*=[    ]*//p' < ../libiberty/Makefile | sed -n '$p'`
+  if test -n "$x"; then
+    WIN32LIBADD="-L../libiberty/pic -liberty"
+  fi
   ;;
 esac
 
index 99ea584..947f79d 100644 (file)
@@ -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)