diff options
author | kris <kris@FreeBSD.org> | 2004-03-19 19:37:49 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-19 19:37:49 +0800 |
commit | 577259f4c82be7ac5ea1c8f0da7b6239667ec4b6 (patch) | |
tree | fe23f2ae448e353e0630b9b9392c55cce225a4a3 /x11-toolkits | |
parent | 14282ddc4d5f6995ecac05ef9fb4515cda7e7527 (diff) | |
download | freebsd-ports-gnome-577259f4c82be7ac5ea1c8f0da7b6239667ec4b6.tar.gz freebsd-ports-gnome-577259f4c82be7ac5ea1c8f0da7b6239667ec4b6.tar.zst freebsd-ports-gnome-577259f4c82be7ac5ea1c8f0da7b6239667ec4b6.zip |
Fix build on amd64 (build shared library objects with -fPIC)
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/xenostep/files/patch-aa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-toolkits/xenostep/files/patch-aa b/x11-toolkits/xenostep/files/patch-aa index d391eaf3cba8..14aa91044b8f 100644 --- a/x11-toolkits/xenostep/files/patch-aa +++ b/x11-toolkits/xenostep/files/patch-aa @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Oct 23 14:21:41 2000 -+++ Makefile Thu Nov 16 11:12:35 2000 +--- Makefile.orig Mon Oct 23 04:21:41 2000 ++++ Makefile Fri Mar 19 03:37:41 2004 @@ -4,11 +4,13 @@ # Edit the entries below for your system: # In most cases you don't have to @@ -13,7 +13,7 @@ +CC ?= gcc +_CFLAGS != $(GTK_CONFIG) --cflags +_LIBS != $(GTK_CONFIG) --libs -+CFLAGS += $(_CFLAGS) ++CFLAGS += $(_CFLAGS) -fPIC +LIBS += $(_LIBS) #Use these for FreeBSD: |