mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-15 23:55:03 +03:00
36 lines
842 B
Batchfile
36 lines
842 B
Batchfile
cd "%WORK_DIR%"
|
|
|
|
@if NOT EXIST "%SOURCE_DIR%\%LIBXML2%" goto file_not_found_bin
|
|
|
|
@7z.exe x "%SOURCE_DIR%\%LIBXML2%" -so | 7z.exe x -aoa -si -ttar
|
|
|
|
set LIBXML2_DIR=%LIBXML2:~0,-7%
|
|
|
|
mklink /D "libxml2" "%LIBXML2_DIR%"
|
|
|
|
fart.exe -r -i -C "%WORK_DIR%\%LIBXML2_DIR%\win32\*.*" \x2Fopt:nowin98 " "
|
|
cd "%LIBXML2_DIR%\win32"
|
|
CSCRIPT configure.js iconv=no vcmanifest=yes zlib=yes
|
|
@if NOT (%ERRORLEVEL%) == (0) goto build_failed
|
|
NMAKE -f Makefile.msvc
|
|
@if NOT (%ERRORLEVEL%) == (0) goto build_failed
|
|
|
|
cd "%WORK%"
|
|
|
|
copy /y "%WORK_DIR%\%LIBXML2_DIR%\win32\bin.msvc\libxml2.dll" "%OUTPUT_DIR%"
|
|
copy /y "%WORK_DIR%\%LIBXML2_DIR%\win32\bin.msvc\libxml2.lib" "%OUTPUT_DIR%"
|
|
|
|
@exit /B 0
|
|
|
|
:file_not_found_bin
|
|
@echo File not found: "%SOURCE_DIR%\%LIBXML2%"
|
|
@goto failed
|
|
|
|
:build_failed
|
|
@echo Problems during the building phase
|
|
@goto failed
|
|
|
|
:failed
|
|
@exit /B 1
|
|
|