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 7518976..44fb779 100644 (file)
@@ -230,6 +230,8 @@ else
         LIB_EXTENSION='dylib' ;;
     cygwin* )
         LIB_EXTENSION='dll' ;;
+    aix* )
+        LIB_EXTENSION='a' ;;
     * )
         LIB_EXTENSION='so' ;;
     esac