[FFmpeg-cvslog] r19614 - trunk/configure
astrange
subversion
Mon Aug 10 10:18:06 CEST 2009
Author: astrange
Date: Mon Aug 10 10:18:05 2009
New Revision: 19614
Log:
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.
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Mon Aug 10 03:27:33 2009 (r19613)
+++ trunk/configure Mon Aug 10 10:18:05 2009 (r19614)
@@ -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
More information about the ffmpeg-cvslog
mailing list