diff options
author | JINMEI Tatuya <jinmei@isc.org> | 2011-07-12 03:32:15 +0200 |
---|---|---|
committer | JINMEI Tatuya <jinmei@isc.org> | 2011-07-12 03:32:15 +0200 |
commit | fd2daaa2c1a27140568cf5a4f04baf57682214d2 (patch) | |
tree | 6e527d2c73587919a0c1e4856bb5e47cf8b6b96b /src | |
parent | [trac983] fixed solaris regression: socktype (and probably protocol) arguments (diff) | |
download | kea-fd2daaa2c1a27140568cf5a4f04baf57682214d2.tar.xz kea-fd2daaa2c1a27140568cf5a4f04baf57682214d2.zip |
[trac983] missing SOURCES for distcheck
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/python/isc/acl/Makefile.am | 2 | ||||
-rw-r--r-- | src/lib/util/python/wrapper_template.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/python/isc/acl/Makefile.am b/src/lib/python/isc/acl/Makefile.am index 64e6bf35bd..2d5698d630 100644 --- a/src/lib/python/isc/acl/Makefile.am +++ b/src/lib/python/isc/acl/Makefile.am @@ -15,7 +15,7 @@ acl_la_CPPFLAGS = $(AM_CPPFLAGS) $(PYTHON_INCLUDES) acl_la_LDFLAGS = $(PYTHON_LDFLAGS) acl_la_CXXFLAGS = $(AM_CXXFLAGS) $(PYTHON_CXXFLAGS) -dns_la_SOURCES = dns.cc dns_requestacl_python.h dns_requestacl_python.cc +dns_la_SOURCES = dns.h dns.cc dns_requestacl_python.h dns_requestacl_python.cc dns_la_SOURCES += dns_requestcontext_python.h dns_requestcontext_python.cc dns_la_CPPFLAGS = $(AM_CPPFLAGS) $(PYTHON_INCLUDES) dns_la_LDFLAGS = $(PYTHON_LDFLAGS) diff --git a/src/lib/util/python/wrapper_template.cc b/src/lib/util/python/wrapper_template.cc index 3a9282fbba..a703731261 100644 --- a/src/lib/util/python/wrapper_template.cc +++ b/src/lib/util/python/wrapper_template.cc @@ -210,7 +210,7 @@ namespace python { // Most of the functions are not actually implemented and NULL here. PyTypeObject @cppclass@_type = { PyVarObject_HEAD_INIT(NULL, 0) - "pydnspp.@CPPCLASS@", + "@MODULE@.@CPPCLASS@", sizeof(s_@CPPCLASS@), // tp_basicsize 0, // tp_itemsize reinterpret_cast<destructor>(@CPPCLASS@_destroy), // tp_dealloc |