From 2f1d60f422b007fc1cbada601fc8c9b7a47001e2 Mon Sep 17 00:00:00 2001 From: diego Date: Tue, 3 Aug 2010 11:46:55 +0000 Subject: 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 --- configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index c7f9b163df..b838c64203 100755 --- a/configure +++ b/configure @@ -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 -- cgit v1.2.3