mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
40 lines
1.9 KiB
Batchfile
40 lines
1.9 KiB
Batchfile
@set CMAKE=cmake-3.12.4-win32-x86.zip
|
|
@set PCRE=pcre-8.41.zip
|
|
@set ZLIB=zlib-1.2.11.tar.gz
|
|
@set LIBXML2=libxml2-2.9.8.tar.gz
|
|
@set LUA=lua-5.3.5.tar.gz
|
|
@set CURL=curl-7.62.0.zip
|
|
@set APACHE_SRC=httpd-2.4.37.tar.gz
|
|
@set APACHE_BIN32=httpd-2.4.37-win32-VC11.zip
|
|
@set APACHE_BIN64=httpd-2.4.37-win64-VC11.zip
|
|
@set YAJL=yajl-2.1.0.zip
|
|
@set SSDEEP=ssdeep-2.13.tar.gz
|
|
@set SSDEEP_BIN=ssdeep-2.13.zip
|
|
|
|
:: BITSAdmin refuses to download YAJL from GitHub URL
|
|
:: @set YAJL_URL=https://github.com/lloyd/yajl/archive/%YAJL:~-9%
|
|
@set YAJL_URL=http://http.debian.net/debian/pool/main/y/yajl/yajl_2.1.0.orig.tar.gz
|
|
|
|
@set CMAKE_URL=https://cmake.org/files/v3.12/%CMAKE%
|
|
@set PCRE_URL=https://ftp.pcre.org/pub/pcre/%PCRE%
|
|
@set ZLIB_URL=https://zlib.net/%ZLIB%
|
|
@set LIBXML2_URL=http://xmlsoft.org/sources/%LIBXML2%
|
|
@set LUA_URL=https://www.lua.org/ftp/%LUA%
|
|
@set CURL_URL=http://curl.askapache.com/download/%CURL%
|
|
@set APACHE_SRC_URL=https://www.apache.org/dist/httpd/%APACHE_SRC%
|
|
@set APACHE_BIN_URL=https://home.apache.org/~steffenal/VC11/binaries
|
|
@set SSDEEP_URL=https://downloads.sourceforge.net/project/ssdeep/ssdeep-2.13
|
|
|
|
bitsadmin.exe /transfer "Downloading dependencies..." %CMAKE_URL% %SOURCE_DIR%\%CMAKE% %PCRE_URL% %SOURCE_DIR%\%PCRE% %ZLIB_URL% %SOURCE_DIR%\%ZLIB% %LIBXML2_URL% %SOURCE_DIR%\%LIBXML2% %LUA_URL% %SOURCE_DIR%\%LUA% %CURL_URL% %SOURCE_DIR%\%CURL% %APACHE_SRC_URL% %SOURCE_DIR%\%APACHE_SRC% %APACHE_BIN_URL%/%APACHE_BIN32% %SOURCE_DIR%\%APACHE_BIN32% %APACHE_BIN_URL%/%APACHE_BIN64% %SOURCE_DIR%\%APACHE_BIN64% %YAJL_URL% %SOURCE_DIR%\%YAJL% %SSDEEP_URL%/%SSDEEP% %SOURCE_DIR%\%SSDEEP% %SSDEEP_URL%/%SSDEEP_BIN% %SOURCE_DIR%\%SSDEEP_BIN%
|
|
|
|
@if NOT (%ERRORLEVEL%) == (0) goto :failed_to_download
|
|
@exit /B 0
|
|
|
|
:failed_to_download
|
|
@echo. && echo Failed to download dependency files... Try again or manually download the files to %SOURCE_DIR% and comment "@call download_files.bat" from build_dependencies.bat
|
|
@goto failed
|
|
|
|
:failed
|
|
@exit /B 1
|
|
|