mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
Currently we need the Apache binary which could be used in 32 or 64 bits. This patch makes usage of 'cl' to identify which architecture is set.
116 lines
2.8 KiB
Batchfile
116 lines
2.8 KiB
Batchfile
:: Those variable should be edited as needed.
|
|
:: Use full paths.
|
|
|
|
:: General paths
|
|
@set WORK_DIR=%cd%\dependencies\build_dir
|
|
@set OUTPUT_DIR=%cd%\dependencies\release_files
|
|
@set SOURCE_DIR=%USERPROFILE%\Downloads
|
|
|
|
:: Aditional paths.
|
|
@set PATH=%PATH%;c:\work\cmake-2.8.7-win32-x86\bin;"c:\program files\7-zip"
|
|
|
|
@set PCRE=pcre-8.33.zip
|
|
@set ZLIB=zlib-1.2.8.tar.gz
|
|
@set LIBXML2=libxml2-2.9.1.tar.gz
|
|
@set LUA=lua-5.1.5.tar.gz
|
|
@set CURL=curl-7.33.0.zip
|
|
@set APACHE_SRC=httpd-2.4.6.tar.gz
|
|
@set APACHE_BIN32=httpd-2.4.6-win32-VC11.zip
|
|
@set APACHE_BIN64=httpd-2.4.6-win64-VC11.zip
|
|
|
|
:: @set VCARGS32="C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\vcvars32.bat"
|
|
:: @set VCARGS64="C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\vcvarsx86_amd64.bat"
|
|
|
|
|
|
:: Do not edit bellow this line.
|
|
@set CURRENT_DIR=%cd%
|
|
|
|
@echo Cleaning directories...
|
|
if EXIST "%WORK_DIR%" @rmdir /s /q "%WORK_DIR%"
|
|
if EXIST "%OUTPUT_DIR%" @rmdir /s /q "%OUTPUT_DIR%"
|
|
@mkdir "%WORK_DIR%"
|
|
@if NOT (%ERRORLEVEL%) == (0) goto failed_to_cleanup
|
|
@mkdir "%OUTPUT_DIR%"
|
|
@if NOT (%ERRORLEVEL%) == (0) goto failed_to_cleanup
|
|
|
|
@echo Checking for vcargs... %1
|
|
@if NOT (%1) == "" call %1
|
|
@if (%ERRORLEVEL%) == (1) goto build_wrong_vcargs
|
|
|
|
set APACHE_BIN=%APACHE_BIN32%
|
|
call cl 2>&1 | findstr /C:"x64"
|
|
@if (%ERRORLEVEL%) == (0) set APACHE_BIN=%APACHE_BIN64%
|
|
|
|
@echo Starting with the depdendencies...
|
|
@echo # Apache - %HTTPD%/%APACHE24_ZIP%
|
|
@call dependencies/build_apache.bat
|
|
@if NOT (%ERRORLEVEL%) == (0) goto build_failed_apache
|
|
@cd "%CURRENT_DIR%"
|
|
echo "c"
|
|
@echo # pcre. - %PCRE%
|
|
@call dependencies/build_pcre.bat
|
|
@if NOT (%ERRORLEVEL%) == (0) goto build_failed_pcre
|
|
@cd "%CURRENT_DIR%"
|
|
echo "b"
|
|
|
|
@echo # zlib - %ZLIB%
|
|
@call dependencies/build_zlib.bat
|
|
@if NOT (%ERRORLEVEL%) == (0) goto build_failed_zlib
|
|
@cd "%CURRENT_DIR%"
|
|
|
|
@echo # libxml2 - %LIBXML2%
|
|
@call dependencies/build_libxml2.bat
|
|
@if NOT (%ERRORLEVEL%) == (0) goto build_failed_libxml2
|
|
@cd "%CURRENT_DIR%"
|
|
|
|
@echo # lua - %LUA%
|
|
@call dependencies/build_lua.bat
|
|
@if NOT (%ERRORLEVEL%) == (0) goto build_failed_lua
|
|
@cd "%CURRENT_DIR%"
|
|
|
|
@echo # curl - %CURL%
|
|
@call dependencies/build_curl.bat
|
|
@if NOT (%ERRORLEVEL%) == (0) goto build_failed_curl
|
|
@cd "%CURRENT_DIR%"
|
|
|
|
@echo All dependencies were built successfully.
|
|
@cd "%CURRENT_DIR%"
|
|
@exit /B 0
|
|
|
|
:failed_to_cleanup
|
|
@echo Failed to cleanup
|
|
@goto failed
|
|
|
|
:build_wrong_vcargs
|
|
@echo Please specify a valid vcargs
|
|
@goto failed
|
|
|
|
:build_failed_apache
|
|
@echo Failed to setup %HTTPD%/%APACHE24_ZIP%...
|
|
@goto failed
|
|
|
|
:build_failed_pcre
|
|
@echo Failed to setup %PCRE%...
|
|
@goto failed
|
|
|
|
:build_failed_zlib
|
|
@echo Failed to setup %ZLIB%...
|
|
@goto failed
|
|
|
|
:build_failed_libxml2
|
|
@echo Failed to setup %LIBXML2%...
|
|
@goto failed
|
|
|
|
:build_failed_lua
|
|
@echo Failed to setup %LUA%...
|
|
@goto failed
|
|
|
|
:build_failed_curl
|
|
@echo Failed to setup %CURL%...
|
|
@goto failed
|
|
|
|
:failed
|
|
@cd %CURRENT_DIR%
|
|
@exit /B 1
|
|
|