summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAlexander Strange <astrange@ithinksw.com>2009-08-10 08:18:05 +0000
committerAlexander Strange <astrange@ithinksw.com>2009-08-10 08:18:05 +0000
commit2704bd1a0982f1a94e54b375da25b69d84660963 (patch)
tree9ca41efbfdfc3e47b4cb23e811e538896bd77447 /configure
parent87a920c6bf57d97dca2c42ee1e884f79568f3c9d (diff)
Fix the EBX available configure check on Darwin/i386.
-mdynamic-no-pic is required for it, but it was only added to CFLAGS and the check only used ASFLAGS. Originally committed as revision 19614 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index e507034c01..e55cfdc2ec 100755
--- a/configure
+++ b/configure
@@ -1871,7 +1871,8 @@ case $target_os in
FFSERVERLDFLAGS=-Wl,-bind_at_load
objformat="macho"
enabled x86_64 && objformat="macho64"
- enabled shared || check_cflags -mdynamic-no-pic
+ enabled shared ||
+ { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
;;
mingw32*)
if test $target_os = "mingw32ce"; then