diff options
author | marcel <marcel@FreeBSD.org> | 2004-02-17 03:03:00 +0800 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2004-02-17 03:03:00 +0800 |
commit | 604246827c2cad65e9c403d4f1fa0e92a4654a25 (patch) | |
tree | 70950e2472e12828e12faefeb8fb094cd1fe0ce7 | |
parent | 1696b54bd9968eadbc1a4e97fd2923c83dd07def (diff) | |
download | freebsd-ports-gnome-604246827c2cad65e9c403d4f1fa0e92a4654a25.tar.gz freebsd-ports-gnome-604246827c2cad65e9c403d4f1fa0e92a4654a25.tar.zst freebsd-ports-gnome-604246827c2cad65e9c403d4f1fa0e92a4654a25.zip |
On ia64, libpython2.3 must be built with -fPIC as well. This unbreaks
KDE (for example).
-rw-r--r-- | lang/python/Makefile | 2 | ||||
-rw-r--r-- | lang/python23/Makefile | 2 | ||||
-rw-r--r-- | lang/python24/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lang/python/Makefile b/lang/python/Makefile index f1e5839bdd2b..cca1766771f9 100644 --- a/lang/python/Makefile +++ b/lang/python/Makefile @@ -76,7 +76,7 @@ PLIST_SUB+= X86_ONLY="" .else PLIST_SUB+= X86_ONLY="@comment " .endif -.if ${ARCH} == amd64 +.if ${ARCH} == amd64 || ${ARCH} == ia64 CFLAGS+= -fPIC .endif .if ${ARCH} == amd64 || ${ARCH} == ia64 || ${ARCH} == sparc64 || ${ARCH} == alpha diff --git a/lang/python23/Makefile b/lang/python23/Makefile index f1e5839bdd2b..cca1766771f9 100644 --- a/lang/python23/Makefile +++ b/lang/python23/Makefile @@ -76,7 +76,7 @@ PLIST_SUB+= X86_ONLY="" .else PLIST_SUB+= X86_ONLY="@comment " .endif -.if ${ARCH} == amd64 +.if ${ARCH} == amd64 || ${ARCH} == ia64 CFLAGS+= -fPIC .endif .if ${ARCH} == amd64 || ${ARCH} == ia64 || ${ARCH} == sparc64 || ${ARCH} == alpha diff --git a/lang/python24/Makefile b/lang/python24/Makefile index f1e5839bdd2b..cca1766771f9 100644 --- a/lang/python24/Makefile +++ b/lang/python24/Makefile @@ -76,7 +76,7 @@ PLIST_SUB+= X86_ONLY="" .else PLIST_SUB+= X86_ONLY="@comment " .endif -.if ${ARCH} == amd64 +.if ${ARCH} == amd64 || ${ARCH} == ia64 CFLAGS+= -fPIC .endif .if ${ARCH} == amd64 || ${ARCH} == ia64 || ${ARCH} == sparc64 || ${ARCH} == alpha |