ac: Fix AIX shared library builds.
authorTom Fogal <tfogal@alumni.unh.edu>
Tue, 13 Oct 2009 17:55:33 +0000 (10:55 -0700)
committerBrian Paul <brianp@vmware.com>
Tue, 13 Oct 2009 22:22:06 +0000 (16:22 -0600)
AIX uses ".a" for both static and shared library extensions.

configure.ac

index 75189761ee7091b8656cb3c513052403b2f8897d..44fb77960ce016682de6be3ed849504c46d77816 100644 (file)
@@ -230,6 +230,8 @@ else
         LIB_EXTENSION='dylib' ;;
     cygwin* )
         LIB_EXTENSION='dll' ;;
+    aix* )
+        LIB_EXTENSION='a' ;;
     * )
         LIB_EXTENSION='so' ;;
     esac