From: Gary Kumfert Date: Sat, 23 Apr 2005 08:14:56 +0000 (+0000) Subject: * m4/libtool.m4 (_LT_LANG_F77_CONFIG) [ aix4, aix5 ]: X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97893dcabb1470debbc7aa0a0b0155a4959cea7c;p=thirdparty%2Flibtool.git * 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. --- diff --git a/ChangeLog b/ChangeLog index 52aa3f1a6..e63967321 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-04-23 Gary Kumfert + + * 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 The FSF are moving offices today. Changed their contact address diff --git a/m4/libtool.m4 b/m4/libtool.m4 index 55c545c3e..c58fb48a2 100644 --- a/m4/libtool.m4 +++ b/m4/libtool.m4 @@ -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])