diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-11 22:32:45 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-11 22:32:45 +0000 |
commit | 1fc9fb8a77d4dfdb6bc8c9d1b47a0daf0b55f09f (patch) | |
tree | b7f82309cbe5ba03ed5dc9d0b73b486b99120b5b /configure | |
parent | 6a5d31ac25f55248af5725287833d007ff78b188 (diff) | |
download | ffmpeg-1fc9fb8a77d4dfdb6bc8c9d1b47a0daf0b55f09f.tar.gz |
Use 'enabled' function to simplify x86_64 check in the mingw32 section.
Originally committed as revision 16557 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1447,7 +1447,7 @@ case $target_os in mingw32*) target_os=mingw32 LIBTARGET=i386 - if test $arch = x86_64; then + if enabled x86_64; then disable need_memalign LIBTARGET=x64 fi |