diff options
author | Martin Storsjö <martin@martin.st> | 2009-07-27 16:14:57 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-07-27 16:14:57 +0000 |
commit | 1aa71e258dff1f63177ac799c63cffc84e56eeff (patch) | |
tree | 9aba030b501bd866bf7c4aa654d737c4173ebb20 /configure | |
parent | ce6636b1c1a67ad082cdf2d5e8100451dcb42b65 (diff) | |
download | ffmpeg-1aa71e258dff1f63177ac799c63cffc84e56eeff.tar.gz |
MinGWCE support in configure; networking is disabled for now.
patch by Martin Storsjö, martin martin st and Ismail Dönmez, ismail namtrac org
Originally committed as revision 19521 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1831,7 +1831,11 @@ case $target_os in enabled shared || check_cflags -mdynamic-no-pic ;; mingw32*) - target_os=mingw32 + if test target_os = "mingw32ce"; then + disable network + else + target_os=mingw32 + fi LIBTARGET=i386 if enabled x86_64; then enable malloc_aligned |