BIND 10 trac2853, updated. 632a5596298f9d253693631606e026e01d8e7fdd [2853] Fix compile warnings

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Jun 6 19:45:41 UTC 2013


The branch, trac2853 has been updated
       via  632a5596298f9d253693631606e026e01d8e7fdd (commit)
       via  1ceeb74c1eba0ce65ea05a55fc86149d3fc733f8 (commit)
      from  35c2010ce56c5fafebad8574184d083d1182534d (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 632a5596298f9d253693631606e026e01d8e7fdd
Author: Mukund Sivaraman <muks at isc.org>
Date:   Fri Jun 7 01:15:28 2013 +0530

    [2853] Fix compile warnings

commit 1ceeb74c1eba0ce65ea05a55fc86149d3fc733f8
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Fri Jun 7 01:14:42 2013 +0530

    [2853] Use our regular CXXFLAGS when compiling Python bindings

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

Summary of changes:
 src/lib/python/isc/datasrc/Makefile.am        |    1 +
 src/lib/python/isc/datasrc/iterator_python.cc |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/datasrc/Makefile.am b/src/lib/python/isc/datasrc/Makefile.am
index 36f17fd..7643d3b 100644
--- a/src/lib/python/isc/datasrc/Makefile.am
+++ b/src/lib/python/isc/datasrc/Makefile.am
@@ -10,6 +10,7 @@ python_PYTHON = __init__.py sqlite3_ds.py
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CPPFLAGS += $(BOOST_INCLUDES)
 AM_CPPFLAGS += $(SQLITE_CFLAGS)
+AM_CXXFLAGS = $(B10_CXXFLAGS)
 
 python_LTLIBRARIES = datasrc.la
 datasrc_la_SOURCES = datasrc.cc datasrc.h
diff --git a/src/lib/python/isc/datasrc/iterator_python.cc b/src/lib/python/isc/datasrc/iterator_python.cc
index 9757a3b..0b80f20 100644
--- a/src/lib/python/isc/datasrc/iterator_python.cc
+++ b/src/lib/python/isc/datasrc/iterator_python.cc
@@ -61,7 +61,7 @@ typedef CPPPyObjectContainer<s_ZoneIterator, ZoneIterator>
 
 // General creation and destruction
 int
-ZoneIterator_init(s_ZoneIterator* self, PyObject* args) {
+ZoneIterator_init(s_ZoneIterator*, PyObject*) {
     // can't be called directly
     PyErr_SetString(PyExc_TypeError,
                     "ZoneIterator cannot be constructed directly");



More information about the bind10-changes mailing list