Skip to content
Snippets Groups Projects
Commit 0c0cd34f authored by Hendrik Leppkes's avatar Hendrik Leppkes Committed by Michael Niedermayer
Browse files

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: default avatarMichael Niedermayer <michael@niedermayer.cc>
parent ede590c8
No related branches found
No related tags found
No related merge requests found
...@@ -3382,6 +3382,7 @@ msvc_common_flags(){ ...@@ -3382,6 +3382,7 @@ msvc_common_flags(){
-lavifil32) echo vfw32.lib ;; -lavifil32) echo vfw32.lib ;;
-lavicap32) echo vfw32.lib user32.lib ;; -lavicap32) echo vfw32.lib user32.lib ;;
-l*) echo ${flag#-l}.lib ;; -l*) echo ${flag#-l}.lib ;;
-LARGEADDRESSAWARE) echo $flag ;;
-L*) echo -libpath:${flag#-L} ;; -L*) echo -libpath:${flag#-L} ;;
*) echo $flag ;; *) echo $flag ;;
esac esac
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment