pkgsrc/games/gtkmagnetic/patches/patch-Makefile
marino 36bccbd57c games/gtkmagnetic: Fix indirect linking (affects all platforms)
The patch causes libm to be directly linked for all platforms.
There was no easy way to limit it to only DragonFly.
2012-05-16 22:02:19 +00:00

13 lines
367 B
Text

$NetBSD: patch-Makefile,v 1.1 2012/05/16 22:02:19 marino Exp $
--- Makefile.orig 2012-05-16 21:04:23.000000000 +0000
+++ Makefile
@@ -69,7 +69,7 @@ endif
#######################################################################
-LIBS = $(GTK_LIBS) $(SOUND_LIBS)
+LIBS = $(GTK_LIBS) $(SOUND_LIBS) -lm
gtkmagnetic: $(OBJS)
$(CC) -o gtkmagnetic $(OBJS) $(LIBS)