ac: Fix AIX shared library builds.

AIX uses ".a" for both static and shared library extensions.
This commit is contained in:
Tom Fogal 2009-10-13 10:55:33 -07:00 committed by Brian Paul
parent f3be27c0cf
commit 9282edfaa0

View File

@ -230,6 +230,8 @@ else
LIB_EXTENSION='dylib' ;;
cygwin* )
LIB_EXTENSION='dll' ;;
aix* )
LIB_EXTENSION='a' ;;
* )
LIB_EXTENSION='so' ;;
esac