BIND 10 bind10-20120621-release, updated. 479ba442fd17afb0e406e18f25d6973c24e642fb [bind10-20120621-release][master] reorder linking of libutil

BIND 10 source code commits bind10-changes at lists.isc.org
Wed Jun 20 22:34:15 UTC 2012


The branch, bind10-20120621-release has been updated
       via  479ba442fd17afb0e406e18f25d6973c24e642fb (commit)
       via  8dd0b14f80a37bb1e9376e393d92c1a3d709636f (commit)
      from  b4c9a66992026501208ee48488c61c1c514cb0e2 (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 479ba442fd17afb0e406e18f25d6973c24e642fb
Author: Jeremy C. Reed <jreed at ISC.org>
Date:   Wed Jun 20 15:32:21 2012 -0500

    [bind10-20120621-release][master] reorder linking of libutil
    
    This fixes problem seen when trying to build on FreeBSD
    when the package is already installed (making it hard to upgrade).
    I tested this on CentOS system too.
    I don't like just re-ordering this but this is a quick hack for the problem.
    (Another workaround would be to bump the shared library version
    but that doesn't work due to the library has a name conflict with
    library in base system. These two points will be resolved later.)

commit 8dd0b14f80a37bb1e9376e393d92c1a3d709636f
Author: Jeremy C. Reed <jreed at ISC.org>
Date:   Wed Jun 20 15:55:51 2012 -0500

    [bind10-20120621-release][master] add entry for trac #2023
    
    (Trac #2023, git b5fbf8a408a047a2552e89ef435a609f5df58d8c)
    from jinmei

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

Summary of changes:
 ChangeLog                     |    7 +++++++
 src/lib/log/Makefile.am       |    2 +-
 src/lib/log/tests/Makefile.am |    2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)

-----------------------------------------------------------------------
diff --git a/ChangeLog b/ChangeLog
index 0da521e..907a228 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 bind10-devel-20120621 released on June 21. 2012
 
+449.	[bug]		muks
+	b10-xfin: fixed a bug where xfrin sent the wrong notification
+	message to zonemgr on successful zone transfer. This also
+	solve other reported problems such as too frequent attempt
+	of zone refreshing (see Trac #1786 and #1834).
+	(Trac #2023, git b5fbf8a408a047a2552e89ef435a609f5df58d8c)
+
 448.	[func]		team
 	b10-ddns is now functional and handles dynamic update requests
 	per RFC 2136.  See BIND 10 guide for configuration and operation
diff --git a/src/lib/log/Makefile.am b/src/lib/log/Makefile.am
index fb3aed7..ed23176 100644
--- a/src/lib/log/Makefile.am
+++ b/src/lib/log/Makefile.am
@@ -47,5 +47,5 @@ if USE_CLANGPP
 liblog_la_CXXFLAGS += -Wno-error
 endif
 liblog_la_CPPFLAGS = $(AM_CPPFLAGS) $(LOG4CPLUS_INCLUDES)
-liblog_la_LIBADD   = $(LOG4CPLUS_LIBS) $(top_builddir)/src/lib/util/libutil.la
+liblog_la_LIBADD   = $(top_builddir)/src/lib/util/libutil.la $(LOG4CPLUS_LIBS)
 liblog_la_LDFLAGS = -no-undefined -version-info 1:0:0
diff --git a/src/lib/log/tests/Makefile.am b/src/lib/log/tests/Makefile.am
index 615f64b..3212daa 100644
--- a/src/lib/log/tests/Makefile.am
+++ b/src/lib/log/tests/Makefile.am
@@ -61,9 +61,9 @@ endif
 AM_CPPFLAGS += $(GTEST_INCLUDES) $(LOG4CPLUS_INCLUDES)
 AM_LDFLAGS  += $(GTEST_LDFLAGS)
 
+AM_LDADD += $(top_builddir)/src/lib/util/libutil.la
 AM_LDADD += $(top_builddir)/src/lib/log/liblog.la
 AM_LDADD += $(top_builddir)/src/lib/util/unittests/libutil_unittests.la
-AM_LDADD += $(top_builddir)/src/lib/util/libutil.la
 AM_LDADD += $(top_builddir)/src/lib/exceptions/libexceptions.la
 AM_LDADD += $(top_builddir)/src/lib/util/unittests/libutil_unittests.la
 AM_LDADD += $(GTEST_LDADD)



More information about the bind10-changes mailing list