projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3be27c
)
ac: Fix AIX shared library builds.
author
Tom Fogal
<tfogal@alumni.unh.edu>
Tue, 13 Oct 2009 17:55:33 +0000
(10:55 -0700)
committer
Brian 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
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index 75189761ee7091b8656cb3c513052403b2f8897d..44fb77960ce016682de6be3ed849504c46d77816 100644
(file)
--- 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