summaryrefslogtreecommitdiff
path: root/games/xscavenger/patches
diff options
context:
space:
mode:
authorminskim <minskim>2004-04-09 00:10:25 +0000
committerminskim <minskim>2004-04-09 00:10:25 +0000
commite8d8a5cd00ef6656b264de75866f06606cf770df (patch)
tree9f2b19cdb412e95668e9515c33971a4061db7630 /games/xscavenger/patches
parent65b7bac8f2ba5f16c6b4f0b3391dd55062b7bf5b (diff)
downloadpkgsrc-e8d8a5cd00ef6656b264de75866f06606cf770df.tar.gz
Use variables defined in ossaudio.buildlink3.mk. This fixes a build
problem caused by hardcoded "-lossaudio" on Linux. OK'ed by wiz@, the maintainer.
Diffstat (limited to 'games/xscavenger/patches')
-rw-r--r--games/xscavenger/patches/patch-aa21
-rw-r--r--games/xscavenger/patches/patch-ab4
2 files changed, 10 insertions, 15 deletions
diff --git a/games/xscavenger/patches/patch-aa b/games/xscavenger/patches/patch-aa
index 514c184c0a9..1bc53d35942 100644
--- a/games/xscavenger/patches/patch-aa
+++ b/games/xscavenger/patches/patch-aa
@@ -1,26 +1,21 @@
-$NetBSD: patch-aa,v 1.1.1.1 2000/01/08 18:26:00 wiz Exp $
+$NetBSD: patch-aa,v 1.2 2004/04/09 00:10:25 minskim Exp $
-diff -r -u -b sound.c.orig sound.c
---- sound.c.orig Thu Jan 6 07:23:56 2000
-+++ sound.c Sat Jan 8 17:09:02 2000
-@@ -5,7 +5,13 @@
+--- sound.c.orig 2002-12-02 00:03:54.000000000 -0600
++++ sound.c
+@@ -5,7 +5,7 @@
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
-+#ifdef __NetBSD__
-+#include <soundcard.h>
-+#define SOUNDDEV "/dev/sound"
-+#else
- #include <linux/soundcard.h>
-+#define SOUNDDEV "/dev/dsp"
-+#endif
+-#include <linux/soundcard.h>
++#include <sys/soundcard.h>
#include <sys/time.h>
#include <signal.h>
#include <string.h>
-@@ -14,7 +20,6 @@
+@@ -14,7 +15,6 @@
#include "scav.h"
#include "sound.h"
-#define SOUNDDEV "/dev/dsp"
char dirlist[512];
+
diff --git a/games/xscavenger/patches/patch-ab b/games/xscavenger/patches/patch-ab
index d16dc404d34..c3126718500 100644
--- a/games/xscavenger/patches/patch-ab
+++ b/games/xscavenger/patches/patch-ab
@@ -1,4 +1,4 @@
-$NetBSD: patch-ab,v 1.1.1.1 2000/01/08 18:26:00 wiz Exp $
+$NetBSD: patch-ab,v 1.2 2004/04/09 00:10:25 minskim Exp $
--- Imakefile.orig Thu Jan 6 06:47:22 2000
+++ Imakefile Sat Jan 8 18:10:48 2000
@@ -16,7 +16,7 @@ $NetBSD: patch-ab,v 1.1.1.1 2000/01/08 18:26:00 wiz Exp $
../data/victory.raw
-LOCAL_LIBRARIES = $(XLIB)
-+LOCAL_LIBRARIES = $(XLIB) -lossaudio
++LOCAL_LIBRARIES = $(XLIB) ${LIBOSSAUDIO}
EXTRA_DEFINES = -DLIBNAME=\"$(LIBNAME)\"
-ComplexProgramTarget(scavenger)