aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-07-26 11:36:26 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2021-08-02 13:54:04 +0200
commitf30427e46c6e58faf6a3cf26406837a928665e21 (patch)
tree665fb72ece218330a98cfe5123841909557cb7db
parentwinipcfg: swap endianness of port for rawsockaddrinet (diff)
downloadwireguard-windows-f30427e46c6e58faf6a3cf26406837a928665e21.tar.xz
wireguard-windows-f30427e46c6e58faf6a3cf26406837a928665e21.zip
installer: sign custom actions dll
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--installer/build.bat7
1 files changed, 6 insertions, 1 deletions
diff --git a/installer/build.bat b/installer/build.bat
index c9da9c91..22fa1c45 100644
--- a/installer/build.bat
+++ b/installer/build.bat
@@ -31,6 +31,7 @@ if exist .deps\prepared goto :build
cd .. || goto :error
:build
+ if exist ..\sign.bat call ..\sign.bat
set PATH=%BUILDDIR%..\.deps\llvm-mingw\bin;%PATH%
set WIX=%BUILDDIR%.deps\wix\
set CFLAGS=-O3 -Wall -std=gnu11 -DWINVER=0x0601 -D_WIN32_WINNT=0x0601 -municode -DUNICODE -D_UNICODE -DNDEBUG
@@ -40,7 +41,6 @@ if exist .deps\prepared goto :build
call :msi amd64 x86_64 x64 || goto :error
call :msi arm armv7 arm || goto :error
call :msi arm64 aarch64 arm64 || goto :error
- if exist ..\sign.bat call ..\sign.bat
if "%SigningCertificate%"=="" goto :success
if "%TimestampServer%"=="" goto :success
echo [+] Signing
@@ -62,6 +62,11 @@ if exist .deps\prepared goto :build
if not exist "%~1" mkdir "%~1"
echo [+] Compiling %1
%CC% %CFLAGS% %LDFLAGS% -o "%~1\customactions.dll" customactions.c %LDLIBS% || exit /b 1
+ if "%SigningCertificate%"=="" goto :skipsign
+ if "%TimestampServer%"=="" goto :skipsign
+ echo [+] Signing %1
+ signtool sign /sha1 "%SigningCertificate%" /fd sha256 /tr "%TimestampServer%" /td sha256 /d "WireGuard Setup Custom Actions" "%~1\customactions.dll" || exit /b 1
+:skipsign
"%WIX%bin\candle" %WIX_CANDLE_FLAGS% -dWIREGUARD_PLATFORM="%~1" -out "%~1\wireguard.wixobj" -arch %3 wireguard.wxs || exit /b %errorlevel%
echo [+] Linking %1
"%WIX%bin\light" %WIX_LIGHT_FLAGS% -out "dist\wireguard-%~1-%WIREGUARD_VERSION%.msi" "%~1\wireguard.wixobj" || exit /b %errorlevel%