mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
ac: Fix AIX shared library builds.
AIX uses ".a" for both static and shared library extensions.
This commit is contained in:
parent
f3be27c0cf
commit
9282edfaa0
1 changed files with 2 additions and 0 deletions
|
|
@ -230,6 +230,8 @@ else
|
|||
LIB_EXTENSION='dylib' ;;
|
||||
cygwin* )
|
||||
LIB_EXTENSION='dll' ;;
|
||||
aix* )
|
||||
LIB_EXTENSION='a' ;;
|
||||
* )
|
||||
LIB_EXTENSION='so' ;;
|
||||
esac
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue