summaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2006-12-14 06:23:08 +0100
committerAaron Griffin <aaron@archlinux.org>2006-12-14 06:23:08 +0100
commitb308f06a3a3d368c38b0d109b7e6c1c639127148 (patch)
treef37ea25991eac1bb7d4232db2973b6b2561843b2 /bindings
parentf45b3356f8edcd1c90048d2b59ccb4577d0dcf02 (diff)
downloadpacman-b308f06a3a3d368c38b0d109b7e6c1c639127148.tar.gz
pacman-b308f06a3a3d368c38b0d109b7e6c1c639127148.tar.xz
* Dan McGee's makepkg updates http://www.archlinux.org/pipermail/pacman-dev/2006-December/000792.html
* configure fixes (CFLAGS) * no-strict-aliasing hacks until full C99 compliance * --with-config-file configure option
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/Makefile.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/bindings/python/Makefile.in b/bindings/python/Makefile.in
index abd7638a..af928ad0 100644
--- a/bindings/python/Makefile.in
+++ b/bindings/python/Makefile.in
@@ -4,6 +4,7 @@ prefix = @prefix@
CFLAGS = $(subst -Werror,,@CFLAGS@)
CFLAGS += $(shell python -c 'from distutils import sysconfig; print "-I" + sysconfig.get_python_inc()')
CFLAGS += -I$(top_srcdir)/lib/libalpm
+CFLAGS += -fno-strict-aliasing # see the swig docs
ifeq ($(shell arch),x86_64)
CFLAGS += -fPIC
endif