aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authormarino <marino@FreeBSD.org>2014-02-06 04:22:45 +0800
committermarino <marino@FreeBSD.org>2014-02-06 04:22:45 +0800
commitf963c2ac5b41dc9d8a430a79f5fe5a0109fd5b90 (patch)
tree1e91d51f920cc56bc85998ece8065f07aa35cf93 /misc
parentddd4af04de7db7d01a36b967c441adce08657e8e (diff)
downloadfreebsd-ports-gnome-f963c2ac5b41dc9d8a430a79f5fe5a0109fd5b90.tar.gz
freebsd-ports-gnome-f963c2ac5b41dc9d8a430a79f5fe5a0109fd5b90.tar.zst
freebsd-ports-gnome-f963c2ac5b41dc9d8a430a79f5fe5a0109fd5b90.zip
misc/gkrellm-helium: Fix for new linkers (-Wl must have an argument)
Diffstat (limited to 'misc')
-rw-r--r--misc/gkrellm-helium/files/patch-Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/gkrellm-helium/files/patch-Makefile b/misc/gkrellm-helium/files/patch-Makefile
new file mode 100644
index 000000000000..432f4e6bb82c
--- /dev/null
+++ b/misc/gkrellm-helium/files/patch-Makefile
@@ -0,0 +1,11 @@
+--- Makefile.orig 2013-09-18 16:01:03.680740000 +0000
++++ Makefile
+@@ -10,7 +10,7 @@ helium.o: helium.c
+ gcc $(CFLAGS) -fPIC -Wall `pkg-config gtk+-2.0 --cflags` -DVERSION=\"$(VERSION)\" -c helium.c
+
+ helium.so: helium.o udp_net.o http_net.o
+- gcc $(CFLAGS) -shared -Wl -lcurl `pkg-config gtk+-2.0 --libs` -o helium.so helium.o udp_net.o http_net.o
++ gcc $(CFLAGS) -shared -lcurl `pkg-config gtk+-2.0 --libs` -o helium.so helium.o udp_net.o http_net.o
+
+ udp_net.o: udp_net.c
+ gcc $(CFLAGS) -c udp_net.c