diff options
author | Tom Fogal <[email protected]> | 2009-10-13 10:55:33 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-10-13 16:22:06 -0600 |
commit | 9282edfaa0ad24be16f5e395f346ca477050cdf6 (patch) | |
tree | 6666d015fb350031407cf313aaf4fd479c2239c7 /configure.ac | |
parent | f3be27c0cf8a4c47230f31d9d66bde7340ffb204 (diff) |
ac: Fix AIX shared library builds.
AIX uses ".a" for both static and shared library extensions.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
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 |