summaryrefslogtreecommitdiff
path: root/qpid/extras/sasl/python
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2010-10-13 18:18:45 +0000
committerTed Ross <tross@apache.org>2010-10-13 18:18:45 +0000
commited633977d7efaf46d3832f73fd39877c582b2640 (patch)
treee3d782fbea17d5676a8ca7a9e286f2a4fedfae52 /qpid/extras/sasl/python
parent671388c4035e160b4ddd4c022fb1028e4c28e564 (diff)
downloadqpid-python-ed633977d7efaf46d3832f73fd39877c582b2640.tar.gz
Added -fno-strict-aliasing for all of the swig-generated Python wrappers because
Swig (for Python) generates code that violates the strict aliasing rules. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1022224 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/extras/sasl/python')
-rw-r--r--qpid/extras/sasl/python/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/extras/sasl/python/Makefile.am b/qpid/extras/sasl/python/Makefile.am
index 32f519f953..43eef70923 100644
--- a/qpid/extras/sasl/python/Makefile.am
+++ b/qpid/extras/sasl/python/Makefile.am
@@ -35,7 +35,7 @@ pyexec_LTLIBRARIES = _saslwrapper.la
_saslwrapper_la_LDFLAGS = -avoid-version -module -shared
_saslwrapper_la_LIBADD = $(PYTHON_LIBS) $(top_builddir)/src/libsaslwrapper.la -lsasl2
-_saslwrapper_la_CXXFLAGS = -I$(PYTHON_INC)
+_saslwrapper_la_CXXFLAGS = -I$(PYTHON_INC) -fno-strict-aliasing
nodist__saslwrapper_la_SOURCES = saslwrapper.cpp
CLEANFILES = $(generated_file_list)