Fix patch file

Try to fix openssl build
Add expat build for win build
This commit is contained in:
2022-10-20 03:24:13 +00:00
committed by GitHub
parent 8a20aeee3d
commit 40d299dcf9
5 changed files with 37 additions and 6 deletions

View File

@@ -14,6 +14,9 @@ CALL %DOWNLOAD_RESOURCE% -o "openssl-3.0.5.tar.gz" "https://www.openssl.org/sour
tar -xzvf "openssl-3.0.5.tar.gz" || EXIT /B %ERRORLEVEL%
CD openssl-3.0.5 || EXIT /B 1
perl Configure shared zlib-dynamic --prefix=%PREFIX% --openssldir=%OPENSSLDIR% || EXIT /B %ERRORLEVEL%
SET "PATH=%PREFIX%\bin;%PATH%"
SET "INCLUDE=%PREFIX%\include;%INCLUDE%"
SET "LIB=%PREFIX%\lib;%LIB%"
nmake || EXIT /B %ERRORLEVEL%
nmake install || EXIT /B %ERRORLEVEL%
ENDLOCAL