]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix (for 1.5.10): Fix unbound-anchor.exe file location defaults to
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Thu, 2 Jun 2016 15:03:44 +0000 (15:03 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Thu, 2 Jun 2016 15:03:44 +0000 (15:03 +0000)
  Program Files with (x86) appended.

git-svn-id: file:///svn/unbound/trunk@3750 be551aaa-1e26-0410-a405-d3ace91eadb9

configure
configure.ac
doc/Changelog

index 5b65237ddc2ef361bde1c493cb8c1dabd99c19cc..12da31a2340a7d6451ffe9df1fdb6d1b83c8ac1a 100755 (executable)
--- a/configure
+++ b/configure
@@ -4064,7 +4064,7 @@ fi
 if test $on_mingw = "no"; then
   ub_conf_file=`eval echo "${sysconfdir}/unbound/unbound.conf"`
 else
-  ub_conf_file="C:\\Program Files\\Unbound\\service.conf"
+  ub_conf_file="C:\\Program Files (x86)\\Unbound\\service.conf"
 fi
 
 # Check whether --with-conf_file was given.
@@ -4195,7 +4195,7 @@ else
   if test $on_mingw = no; then
     UNBOUND_ROOTKEY_FILE="$UNBOUND_RUN_DIR/root.key"
 else
-    UNBOUND_ROOTKEY_FILE="C:\\Program Files\\Unbound\\root.key"
+    UNBOUND_ROOTKEY_FILE="C:\\Program Files (x86)\\Unbound\\root.key"
 fi
 
 fi
@@ -4217,7 +4217,7 @@ else
   if test $on_mingw = no; then
     UNBOUND_ROOTCERT_FILE="$UNBOUND_RUN_DIR/icannbundle.pem"
 else
-    UNBOUND_ROOTCERT_FILE="C:\\Program Files\\Unbound\\icannbundle.pem"
+    UNBOUND_ROOTCERT_FILE="C:\\Program Files (x86)\\Unbound\\icannbundle.pem"
 fi
 
 fi
index 37e3993e6f99768934b5067f97e180f864164506..b5f33fa0850ef5a919d47c7e77cc382a9dc18e92 100644 (file)
@@ -117,7 +117,7 @@ fi
 if test $on_mingw = "no"; then
   ub_conf_file=`eval echo "${sysconfdir}/unbound/unbound.conf"`
 else
-  ub_conf_file="C:\\Program Files\\Unbound\\service.conf"
+  ub_conf_file="C:\\Program Files (x86)\\Unbound\\service.conf"
 fi
 AC_ARG_WITH([conf_file],
         AC_HELP_STRING([--with-conf-file=path], 
@@ -187,7 +187,7 @@ AC_ARG_WITH(rootkey-file,
 if test $on_mingw = no; then
     UNBOUND_ROOTKEY_FILE="$UNBOUND_RUN_DIR/root.key"
 else
-    UNBOUND_ROOTKEY_FILE="C:\\Program Files\\Unbound\\root.key"
+    UNBOUND_ROOTKEY_FILE="C:\\Program Files (x86)\\Unbound\\root.key"
 fi
 )
 AC_SUBST(UNBOUND_ROOTKEY_FILE)
@@ -201,7 +201,7 @@ AC_ARG_WITH(rootcert-file,
 if test $on_mingw = no; then
     UNBOUND_ROOTCERT_FILE="$UNBOUND_RUN_DIR/icannbundle.pem"
 else
-    UNBOUND_ROOTCERT_FILE="C:\\Program Files\\Unbound\\icannbundle.pem"
+    UNBOUND_ROOTCERT_FILE="C:\\Program Files (x86)\\Unbound\\icannbundle.pem"
 fi
 )
 AC_SUBST(UNBOUND_ROOTCERT_FILE)
index ef73531d269bf0e9cd1467d4a0461e309c8a4af5..903f3ab6726cd3651414f22b2f1fbbcfe1555e35 100644 (file)
@@ -4,6 +4,8 @@
        - Fix #752: retry resource temporarily unavailable on control pipe.
        - un-document localzone tags.
        - tag for release 1.5.9rc1.
+       - Fix (for 1.5.10): Fix unbound-anchor.exe file location defaults to
+         Program Files with (x86) appended.
 
 31 May 2016: Wouter
        - Fix windows service to be created run with limited rights, as a