summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-07-24 13:16:43 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-07-24 21:56:10 +0200
commit0c0cd34f9c7df033ca4cc31e118e68ceaeb3e2bb (patch)
treef4dfe6624454a165374d3f04546557c1438f616e /configure
parentede590c84d73e3e900a9c644ede9dbdffe2af7e2 (diff)
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>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure b/configure
index 7748bc7018..8f3bce31ba 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