/
githubmirror
/
xmlsec
Обзор
Документация
Войти
/
githubmirror
/
xmlsec
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.3.9
scripts/README-WINDOWS.md.in
39 строк
1 KB
lsh123
(xmlsec-windows) Simplify windows build and remove 'with-dl' option for configure.js (#959)
14 окт 2025, 23:53
Не верифицирован
14 окт 2025, 23:53
3f5be23
Код
Авторство
О чём код?
# This package contains the LibXML2, LibXSLT, OpenSSL, and XMLSec binaries for Win64 (/MD runtime). ## LibXML2 (@libxml2_version@) ``` cd win32 cscript configure.js iconv=no zlib=no cruntime=/MD prefix=c:\local\distro\libxml2 nmake nmake install ``` ## LibXSLT (@libxslt_version@) ``` cd win32 cscript configure.js iconv=no zlib=no cruntime=/MD prefix=c:\local\distro\libxslt include=c:\local\distro\libxml2\include\libxml2 lib=c:\local\distro\libxml2\lib nmake nmake install ``` ## OpenSSL (@openssl_version@) ``` C:\Strawberry\perl\bin\perl.exe Configure no-unit-test --prefix=c:\local\distro\openssl --release VC-WIN64A nmake nmake install_sw ``` ## XMLSec (@xmlsec_version@) ``` cd win32 cscript configure.js pedantic=yes werror=yes static=no cruntime=/MD xslt=yes crypto=openssl,mscng unicode=yes prefix=C:\local\distro\xmlsec include=C:\local\distro\libxml2\include;C:\local\distro\libxml2\include\libxml2;C:\local\distro\libxslt\include;C:\local\distro\openssl\include; lib=C:\local\distro\libxml2\lib;C:\local\distro\libxslt\lib;C:\local\distro\openssl\lib nmake nmake install ``` ## Archive ``` cd c:\local\distro find . -name "*.pdb" -exec rm {} \; zip -r xmlsec1-@xmlsec_version@-win64.zip libxml2 libxslt openssl xmlsec README.md ```