BIND 10 master, updated. 7bc93774a449b3f19748a37186db3efcd3d6c537 Merge branch 'master' of ssh://git.bind10.isc.org/var/bind10/git/bind10

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Sep 29 16:19:09 UTC 2011


The branch, master has been updated
       via  7bc93774a449b3f19748a37186db3efcd3d6c537 (commit)
       via  d5a58bbe641d32257035a6087f18655e7b66d8fd (commit)
      from  c64c4730852f74fff8ea75730e0b40cd3b23a85e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 7bc93774a449b3f19748a37186db3efcd3d6c537
Merge: d5a58bbe641d32257035a6087f18655e7b66d8fd c64c4730852f74fff8ea75730e0b40cd3b23a85e
Author: Jeremy C. Reed <jreed at ISC.org>
Date:   Thu Sep 29 11:19:06 2011 -0500

    Merge branch 'master' of ssh://git.bind10.isc.org/var/bind10/git/bind10

commit d5a58bbe641d32257035a6087f18655e7b66d8fd
Author: Jeremy C. Reed <jreed at ISC.org>
Date:   Thu Sep 29 11:17:37 2011 -0500

    [master] use single = with test
    
    Noticed on FreeBSD:
    
    test: yes: unexpected operator
    
    Trivial fix (and consistent with rest), no review.

-----------------------------------------------------------------------

Summary of changes:
 configure.ac |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

-----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index cd44b4e..a94912e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -437,7 +437,7 @@ AC_ARG_WITH([botan],
   AC_HELP_STRING([--with-botan=PATH],
     [specify exact directory of Botan library]),
     [botan_path="$withval"])
-if test "${botan_path}" == "no" ; then
+if test "${botan_path}" = "no" ; then
     AC_MSG_ERROR([Need botan for libcryptolink])
 fi
 if test "${botan_path}" != "yes" ; then
@@ -510,7 +510,7 @@ AC_ARG_WITH([log4cplus],
   AC_HELP_STRING([--with-log4cplus=PATH],
     [specify exact directory of log4cplus library and headers]),
     [log4cplus_path="$withval"])
-if test "${log4cplus_path}" == "no" ; then
+if test "${log4cplus_path}" = "no" ; then
     AC_MSG_ERROR([Need log4cplus])
 elif test "${log4cplus_path}" != "yes" ; then
   LOG4CPLUS_INCLUDES="-I${log4cplus_path}/include"




More information about the bind10-changes mailing list