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

ChangeLog
libtool.m4

index 0c2f5b4b4fe34595e5da5f6c6e0b9d4c2796083a..96e24f453a0d0ea2fcd28460ab2645d2f16537bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-04-23  Gary Kumfert <kumfert@llnl.gov>
+
+       * libtool.m4 (AC_LIBTOOL_LANG_F77_CONFIG) [ aix4, aix5 ]:
+       Adjust logic to match the C case: Only disable static if not
+       on ia64 nor runtimelinking.
+
 2005-04-23  Jonathan Ryshpan <jonrysh@pacbell.net>
 
        * doc/libtool.texi: Get rid of overfull hboxes.
index 290af393a03f5ef440ceea9d70d287d4ba360d0a..ba09dfd7695d6acd21966ba48452719d6b9c4c50 100644 (file)
@@ -3814,7 +3814,9 @@ aix3*)
   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])