[FFmpeg-devel] [PATCH] configure: fix LARGEADDRESSAWARE flag with MSVC
Hendrik Leppkes
h.leppkes at gmail.com
Fri Jul 24 13:16:43 CEST 2015
Otherwise it would get translated like a library path (-L option),
which breaks setting the flag.
---
configure | 1 +
1 file changed, 1 insertion(+)
diff --git a/configure b/configure
index 7b8815f..98bfbc6 100755
--- a/configure
+++ b/configure
@@ -3382,6 +3382,7 @@ msvc_common_flags(){
-lavifil32) echo vfw32.lib ;;
-lavicap32) echo vfw32.lib user32.lib ;;
-l*) echo ${flag#-l}.lib ;;
+ -LARGEADDRESSAWARE) echo $flag ;;
-L*) echo -libpath:${flag#-L} ;;
*) echo $flag ;;
esac
--
1.9.5.msysgit.1
More information about the ffmpeg-devel
mailing list