configure: Detect AIX ar command instead of hardcoding it in the OS section

This commit is contained in:
Diego Biurrun 2013-07-29 18:23:08 +02:00
parent 711c4da1af
commit 4822ee3ca6
1 changed files with 3 additions and 1 deletions

4
configure vendored
View File

@ -2707,6 +2707,9 @@ if $ar 2>&1 | grep -q Microsoft; then
elif $ar 2>&1 | grep -q 'Texas Instruments'; then elif $ar 2>&1 | grep -q 'Texas Instruments'; then
arflags="rq" arflags="rq"
ar_o='$@' ar_o='$@'
elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
arflags='-Xany -r -c'
ar_o='$@'
else else
arflags="rc" arflags="rc"
ar_o='$@' ar_o='$@'
@ -3053,7 +3056,6 @@ case $target_os in
SHFLAGS=-shared SHFLAGS=-shared
add_cppflags '-I\$(SRC_PATH)/compat/aix' add_cppflags '-I\$(SRC_PATH)/compat/aix'
enabled shared && add_ldflags -Wl,-brtl enabled shared && add_ldflags -Wl,-brtl
ar_default='ar -Xany'
;; ;;
haiku) haiku)
prefix_default="/boot/common" prefix_default="/boot/common"