diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-07-24 13:16:43 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-24 21:56:10 +0200 |
commit | 0c0cd34f9c7df033ca4cc31e118e68ceaeb3e2bb (patch) | |
tree | f4dfe6624454a165374d3f04546557c1438f616e | |
parent | ede590c84d73e3e900a9c644ede9dbdffe2af7e2 (diff) | |
download | ffmpeg-0c0cd34f9c7df033ca4cc31e118e68ceaeb3e2bb.tar.gz |
configure: fix LARGEADDRESSAWARE flag with MSVC
Otherwise it would get translated like a library path (-L option),
which breaks setting the flag.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |