From 8b83d568930506600c65c14aaa76089d1c618d69 Mon Sep 17 00:00:00 2001 From: Alexander Strange Date: Wed, 12 Mar 2008 23:15:57 +0000 Subject: [PATCH] Fix configure to properly build without PIC by default on Darwin Patch by Alexander Strange (astrange ithinksw com) Originally committed as revision 12425 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 4bea3209a1..32a398008f 100755 --- a/configure +++ b/configure @@ -1374,7 +1374,7 @@ if test $targetos = darwin; then add_cflags "-pipe" check_cflags "-force_cpusubtype_ALL" check_cflags "-Wno-sign-compare" - disabled shared && add_cflags -mdynamic-no-pic + enabled shared || add_cflags -mdynamic-no-pic fi fi