diff options
author | tron <tron@pkgsrc.org> | 1999-04-06 17:39:40 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-04-06 17:39:40 +0000 |
commit | c62f5aa76cd1ea17b3b3db4250dd7c702c7f9cf9 (patch) | |
tree | 317d98749466b7e9732d3baa0bfb92d2e2da4aa8 /audio/wsoundprefs/patches | |
parent | 625e1eeb68b05fbf9fdf7ad6a42fe9fe0ddd9740 (diff) | |
download | pkgsrc-c62f5aa76cd1ea17b3b3db4250dd7c702c7f9cf9.tar.gz |
New "wsoundprefs" package created by Johnny C. Lam:
WMSound configuration utility.
Diffstat (limited to 'audio/wsoundprefs/patches')
-rw-r--r-- | audio/wsoundprefs/patches/patch-aa | 17 | ||||
-rw-r--r-- | audio/wsoundprefs/patches/patch-ab | 34 |
2 files changed, 51 insertions, 0 deletions
diff --git a/audio/wsoundprefs/patches/patch-aa b/audio/wsoundprefs/patches/patch-aa new file mode 100644 index 00000000000..aadc74a9945 --- /dev/null +++ b/audio/wsoundprefs/patches/patch-aa @@ -0,0 +1,17 @@ +$NetBSD: patch-aa,v 1.1.1.1 1999/04/06 17:39:40 tron Exp $ + +--- Imakefile.orig Mon Mar 8 03:17:43 1999 ++++ Imakefile Sun Mar 21 03:13:13 1999 +@@ -1,10 +1,10 @@ + #define IHaveSubdirs + #define PassCDebugFlags CDEBUGFLAGS="$(CDEBUGFLAGS)" + +-PREFIX = /usr/X11R6 ++XCOMM PREFIX = /usr/X11R6 + + XCOMM CDEBUGFLAGS = -Wall -ggdb -DDEBUG +-CDEBUGFLAGS = -O6 -m486 ++XCOMM CDEBUGFLAGS = -O6 -m486 + + SUBDIRS = src + diff --git a/audio/wsoundprefs/patches/patch-ab b/audio/wsoundprefs/patches/patch-ab new file mode 100644 index 00000000000..6b891fad5f3 --- /dev/null +++ b/audio/wsoundprefs/patches/patch-ab @@ -0,0 +1,34 @@ +$NetBSD: patch-ab,v 1.1.1.1 1999/04/06 17:39:40 tron Exp $ + +--- src/Imakefile.orig Tue Mar 2 08:06:36 1999 ++++ src/Imakefile Sun Mar 21 03:19:46 1999 +@@ -13,11 +13,18 @@ + XCOMM EFENCELIB = -lefence + EFENCELIB = + +-WMSOUNDLIB = -lwmsnd ++XCOMM NetBSD requires -lossaudio for Linux OSS interface compatibility. ++#ifdef NetBSDArchitecture ++ OSSLIB = -lossaudio ++#else ++ OSSLIB = ++#endif ++ ++WMSOUNDLIB = -lwmsnd $(OSSLIB) + WRASTERCFLAGS = `get-wraster-flags --cflags` + WRASTERLFLAGS = `get-wraster-flags --lflags` + WRASTERLIBS = `get-wraster-flags --libs` +-WINGSLIBS = -lWINGs -lPropList ++WINGSLIBS = -lWINGs -L${LOCALBASE}/lib -lPropList + + STD_INCLUDES = $(WRASTERCFLAGS) + DEPLIBS = $(DEPXLIB) +@@ -29,7 +36,7 @@ + SRCS = PLFunctions.c SoundEvents.c SoundPaths.c WSoundPrefs.c main.c + OBJS = PLFunctions.o SoundEvents.o SoundPaths.o WSoundPrefs.o main.o + +-ComplexProgramTarget(WSoundPrefs) ++ComplexProgramTargetNoMan(WSoundPrefs) + + InstallMultiple($(ICONS),$(BINDIR)) + |