Module: Mesa Branch: mesa_7_6_branch Commit: 9282edfaa0ad24be16f5e395f346ca477050cdf6 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9282edfaa0ad24be16f5e395f346ca477050cdf6
Author: Tom Fogal <[email protected]> Date: Tue Oct 13 10:55:33 2009 -0700 ac: Fix AIX shared library builds. AIX uses ".a" for both static and shared library extensions. --- configure.ac | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index 7518976..44fb779 100644 --- a/configure.ac +++ b/configure.ac @@ -230,6 +230,8 @@ else LIB_EXTENSION='dylib' ;; cygwin* ) LIB_EXTENSION='dll' ;; + aix* ) + LIB_EXTENSION='a' ;; * ) LIB_EXTENSION='so' ;; esac _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
