Mesa (mesa_7_6_branch): ac: Fix AIX shared library builds.

Brian Paul brianp at kemper.freedesktop.org
Tue Oct 13 22:22:33 UTC 2009


Module: Mesa
Branch: mesa_7_6_branch
Commit: 9282edfaa0ad24be16f5e395f346ca477050cdf6
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9282edfaa0ad24be16f5e395f346ca477050cdf6

Author: Tom Fogal <tfogal at alumni.unh.edu>
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




More information about the mesa-commit mailing list