Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
3ef9a0f4
Commit
3ef9a0f4
authored
May 10, 2014
by
Tomek Mrugalski
🛰
Browse files
[3449] Compilation workaround for Python 3.4
parent
a05fe34d
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/lib/dns/python/Makefile.am
View file @
3ef9a0f4
...
...
@@ -4,6 +4,13 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
AM_CPPFLAGS
+=
$(BOOST_INCLUDES)
AM_CXXFLAGS
=
$(B10_CXXFLAGS)
# There is a build problem with python3.4 (a new field tp_finalize) has been
# added and now compiler complains about it not being properly initialized in
# construtor. Since the whole python thing goes away, it's counter-productive
# to spend any time on making this work on both python3.3 and 3.4, so
# ingoring the warning seems the way to go.
AM_CXXFLAGS
+=
-Wno-error
lib_LTLIBRARIES
=
libkea-pydnspp.la
libkea_pydnspp_la_SOURCES
=
pydnspp_common.cc pydnspp_common.h
libkea_pydnspp_la_SOURCES
+=
pydnspp_config.h pydnspp_towire.h
...
...
src/lib/python/isc/log/Makefile.am
View file @
3ef9a0f4
...
...
@@ -4,6 +4,13 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
AM_CPPFLAGS
+=
$(BOOST_INCLUDES)
AM_CXXFLAGS
=
$(B10_CXXFLAGS)
# There is a build problem with python3.4 (a new field tp_finalize) has been
# added and now compiler complains about it not being properly initialized in
# construtor. Since the whole python thing goes away, it's counter-productive
# to spend any time on making this work on both python3.3 and 3.4, so
# ingoring the warning seems the way to go.
AM_CXXFLAGS
+=
-Wno-error
pythondir
=
$(pyexecdir)
/isc
python_LTLIBRARIES
=
log.la
log_la_SOURCES
=
log.cc
...
...
src/lib/python/isc/util/cio/Makefile.am
View file @
3ef9a0f4
...
...
@@ -4,6 +4,13 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
AM_CPPFLAGS
+=
$(BOOST_INCLUDES)
AM_CXXFLAGS
=
$(B10_CXXFLAGS)
# There is a build problem with python3.4 (a new field tp_finalize) has been
# added and now compiler complains about it not being properly initialized in
# construtor. Since the whole python thing goes away, it's counter-productive
# to spend any time on making this work on both python3.3 and 3.4, so
# ingoring the warning seems the way to go.
AM_CXXFLAGS
+=
-Wno-error
python_PYTHON
=
__init__.py
pythondir
=
$(PYTHON_SITEPKG_DIR)
/isc/util/cio
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment