From bccf28dbc642d05ed9100bb25e0c0d38ea71993e Mon Sep 17 00:00:00 2001 From: Alexander Kulikov Date: Wed, 4 Apr 2018 00:56:53 +0300 Subject: windows: All c++ and DLLs removed, instead of it system calls are used. Also fixed duplicating of icon files in temp folder. --- signdll.bash | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100755 signdll.bash (limited to 'signdll.bash') diff --git a/signdll.bash b/signdll.bash deleted file mode 100755 index b621328..0000000 --- a/signdll.bash +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -function die() { - echo $* - exit 1 -} - -if [ -z "$BNS_CERT" ] -then - die "$0: Please set BNS_CERT to the bns signing certificate for windows" -fi - -if [ -z "$BNS_CERT_PASS" ] -then - die "$0: Please set BNS_CERT_PASS to the password for the $BNS_CERT signing key" -fi - -which osslsigncode > /dev/null -if [ $? -ne 0 ] -then - echo "Installing osslsigncode" - brew install osslsigncode || die "Could not install osslsigncode" -fi -osslsigncode sign -pkcs12 "$BNS_CERT" -pass "$BNS_CERT_PASS" -in dll/systray386.dll_unsigned -out dll/systray386.dll || die "Could not sign windows 386 dll" -osslsigncode sign -pkcs12 "$BNS_CERT" -pass "$BNS_CERT_PASS" -in dll/systrayamd64.dll_unsigned -out dll/systrayamd64.dll || die "Could not sign windows 386 dll" -- cgit v1.2.3