From: Tom Fogal Date: Tue, 13 Oct 2009 17:55:33 +0000 (-0700) Subject: ac: Fix AIX shared library builds. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9282edfaa0ad24be16f5e395f346ca477050cdf6;p=mesa.git ac: Fix AIX shared library builds. AIX uses ".a" for both static and shared library extensions. --- diff --git a/configure.ac b/configure.ac index 75189761ee7..44fb77960ce 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