diff options
author | kris <kris@FreeBSD.org> | 2004-03-14 13:18:33 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-14 13:18:33 +0800 |
commit | 11ef758600ea716604eb845b1617d3e5609e9367 (patch) | |
tree | 4064cf0ea46211382847168825500a2fd8b00c38 /www | |
parent | 770803ac22ce0f7d83a404122e03984a69290091 (diff) | |
download | freebsd-ports-gnome-11ef758600ea716604eb845b1617d3e5609e9367.tar.gz freebsd-ports-gnome-11ef758600ea716604eb845b1617d3e5609e9367.tar.zst freebsd-ports-gnome-11ef758600ea716604eb845b1617d3e5609e9367.zip |
Fix build on amd64 (shared library objects must be built with -fPIC)
Diffstat (limited to 'www')
-rw-r--r-- | www/sidplug/files/patch-Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/sidplug/files/patch-Makefile b/www/sidplug/files/patch-Makefile index 50a85246b984..d5d7229bba9d 100644 --- a/www/sidplug/files/patch-Makefile +++ b/www/sidplug/files/patch-Makefile @@ -1,5 +1,5 @@ ---- Makefile Mon Nov 17 02:32:09 1997 -+++ Makefile.new Fri Dec 14 21:08:26 2001 +--- Makefile.orig Mon Nov 17 02:32:09 1997 ++++ Makefile Sat Mar 13 21:18:05 2004 @@ -19,11 +19,10 @@ # @@ -11,7 +11,7 @@ -OPTIMIZER = -O -CFLAGS = $(OPTIMIZER) $(PLUGIN_DEFINES) +CC ?= gcc -+CFLAGS += $(PLUGIN_DEFINES) ++CFLAGS += $(PLUGIN_DEFINES) -fPIC SRC= sidplug.c npunix.c OBJ= sidplug.o npunix.o |