summaryrefslogtreecommitdiff
path: root/configure.vbs
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2017-06-09 09:58:23 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2017-06-09 09:58:23 +0000
commit462f94e7dae01a51905968aa523f2386c4fda821 (patch)
tree0a24450641e16af8c648573720f6de5cd2b8c791 /configure.vbs
parente93a9e297d2773ff51bac313ece60482af7e2d1a (diff)
downloadVirtualBox-svn-462f94e7dae01a51905968aa523f2386c4fda821.tar.gz
configure.vbs: added --disable-sdl
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@67313 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'configure.vbs')
-rw-r--r--configure.vbs13
1 files changed, 7 insertions, 6 deletions
diff --git a/configure.vbs b/configure.vbs
index e213160fc61..9e7f37e3ea6 100644
--- a/configure.vbs
+++ b/configure.vbs
@@ -2275,9 +2275,6 @@ Sub Main
if blnOptDisableUDPTunnel = True then
DisableUDPTunnel "--disable-udptunnel"
end if
- if blnOptDisableSDL = True then
- DisableSDL "--disable-sdl"
- end if
CheckSourcePath
CheckForkBuild strOptkBuild
CheckForWinDDK strOptDDK
@@ -2289,9 +2286,13 @@ Sub Main
CheckForMinGWw64 strOptMinGWw64
CfgPrint "VBOX_WITH_OPEN_WATCOM := " '' @todo look for openwatcom 1.9+
EnvPrint "set PATH=%PATH%;" & g_strPath& "/tools/win." & g_strTargetArch & "/bin;" '' @todo look for yasm
- CheckForlibSDL strOptlibSDL
- ' Don't check for these libraries by default as they are part of OSE
- ' Using external libs can add a dependency to iconv
+ if blnOptDisableSDL = True then
+ DisableSDL "--disable-sdl"
+ else
+ CheckForlibSDL strOptlibSDL
+ end if
+ ' Don't check for this library by default as it's part of the tarball
+ ' Using an external library can add a dependency to iconv
if (strOptXml2 <> "") then
CheckForXml2 strOptXml2
end if