configure: avoid unsupported options with clang on Darwin/PPC

Suppress unsupported compiler options when building with clang on Darwin/PPC.
patch by Rowan James, rowanj@phere.net

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31910 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-08-03 11:46:55 +00:00 committed by Uoti Urpala
parent bab0811d56
commit 2f1d60f422
1 changed files with 4 additions and 1 deletions

5
configure vendored
View File

@ -1409,7 +1409,10 @@ if netbsd || dragonfly ; then
fi
if darwin; then
extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
extra_cflags="-mdynamic-no-pic $extra_cflags"
if test "$(basename $_cc)" != "clang" ; then
extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags"
fi
_timer=timer-darwin.c
fi