mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-19 05:55:07 +00:00
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>
This commit is contained in:
parent
ede590c84d
commit
0c0cd34f9c
1
configure
vendored
1
configure
vendored
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user