mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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
This commit is contained in:
parent
87a920c6bf
commit
2704bd1a09
3
configure
vendored
3
configure
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user