mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
Fix #1258: 64bit getting installed in C:\Program Files (x86).
git-svn-id: file:///svn/unbound/trunk@4140 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
eb67febcc4
commit
f610f40558
2 changed files with 5 additions and 0 deletions
|
|
@ -3,6 +3,7 @@
|
||||||
by "#ifdef SHA256_DIGEST_LENGTH@daemon/remote.c".
|
by "#ifdef SHA256_DIGEST_LENGTH@daemon/remote.c".
|
||||||
- iana portlist update
|
- iana portlist update
|
||||||
- Fix #1258: Windows 10 X64 unbound 1.6.2 service will not start.
|
- Fix #1258: Windows 10 X64 unbound 1.6.2 service will not start.
|
||||||
|
and fix that 64bit getting installed in C:\Program Files (x86).
|
||||||
|
|
||||||
26 April 2017: Ralph
|
26 April 2017: Ralph
|
||||||
- Implemented trust anchor signaling using key tag query.
|
- Implemented trust anchor signaling using key tag query.
|
||||||
|
|
|
||||||
|
|
@ -368,6 +368,10 @@ if [ "$DOWIN" = "yes" ]; then
|
||||||
info "Creating installer"
|
info "Creating installer"
|
||||||
quadversion=`cat ../config.h | grep RSRC_PACKAGE_VERSION | sed -e 's/#define RSRC_PACKAGE_VERSION //' -e 's/,/\\./g'`
|
quadversion=`cat ../config.h | grep RSRC_PACKAGE_VERSION | sed -e 's/#define RSRC_PACKAGE_VERSION //' -e 's/,/\\./g'`
|
||||||
cat ../winrc/setup.nsi | sed -e 's/define VERSION.*$/define VERSION "'$version'"/' -e 's/define QUADVERSION.*$/define QUADVERSION "'$quadversion'"/' > ../winrc/setup_ed.nsi
|
cat ../winrc/setup.nsi | sed -e 's/define VERSION.*$/define VERSION "'$version'"/' -e 's/define QUADVERSION.*$/define QUADVERSION "'$quadversion'"/' > ../winrc/setup_ed.nsi
|
||||||
|
if test "$W64" = "yes"; then
|
||||||
|
mv ../winrc/setup_ed.nsi ../winrc/setup_ed_old.nsi
|
||||||
|
cat ../winrc/setup_ed_old.nsi | sed -e 's/PROGRAMFILES/PROGRAMFILES64/' > ../winrc/setup_ed.nsi
|
||||||
|
fi
|
||||||
"$makensis" ../winrc/setup_ed.nsi
|
"$makensis" ../winrc/setup_ed.nsi
|
||||||
info "Created installer"
|
info "Created installer"
|
||||||
cd ..
|
cd ..
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue