]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* m4/libtool.m4 (_LT_LANG_F77_CONFIG) [ aix4, aix5 ]:
authorGary Kumfert <kumfert@llnl.gov>
Sat, 23 Apr 2005 08:14:56 +0000 (08:14 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 23 Apr 2005 08:14:56 +0000 (08:14 +0000)
Adjust logic to match the C case: Only disable static if not
on ia64 nor runtimelinking.

ChangeLog
m4/libtool.m4

index 52aa3f1a6aa98eeae7509ccf1fbba75a4303ac65..e63967321564c0e744a3f367623537372102700f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-04-23  Gary Kumfert <kumfert@llnl.gov>
+
+       * m4/libtool.m4 (_LT_LANG_F77_CONFIG) [ aix4, aix5 ]:
+       Adjust logic to match the C case: Only disable static if not
+       on ia64 nor runtimelinking.
+
 2005-04-22  Gary V. Vaughan  <gary@gnu.org>
 
        The FSF are moving offices today.  Changed their contact address
index 55c545c3e31a96a74b348e92aa1cd6e2a3c1ad2f..c58fb48a28f07e726e739d3a78504e7510bbf78c 100644 (file)
@@ -5816,7 +5816,9 @@ if test "$_lt_caught_F77_error" != yes; then
         fi
         ;;
       aix4* | aix5*)
-        test "$enable_shared" = yes && enable_static=no
+       if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
+         test "$enable_shared" = yes && enable_static=no
+       fi
         ;;
     esac
     AC_MSG_RESULT([$enable_shared])