diff options
author | tron <tron> | 1999-08-09 17:31:09 +0000 |
---|---|---|
committer | tron <tron> | 1999-08-09 17:31:09 +0000 |
commit | fe33babafc619558b6a076e43b3dc839069a5e75 (patch) | |
tree | ae7d4fa75da4772f8dfeb518b5b8e21eae545f91 /audio/snd | |
parent | 67fbff3b8b238a4ce0fdce9db624ad20c08c2c76 (diff) | |
download | pkgsrc-fe33babafc619558b6a076e43b3dc839069a5e75.tar.gz |
Add run time library path and link with "SM" library to make "snd" work
on ELF platforms. Fixes PR pkg/8166 by Thilo Manske.
Diffstat (limited to 'audio/snd')
-rw-r--r-- | audio/snd/files/patch-sum | 4 | ||||
-rw-r--r-- | audio/snd/patches/patch-ae | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/audio/snd/files/patch-sum b/audio/snd/files/patch-sum index 72e0d17433a..868d7a9c5ff 100644 --- a/audio/snd/files/patch-sum +++ b/audio/snd/files/patch-sum @@ -1,10 +1,10 @@ -$NetBSD: patch-sum,v 1.1 1999/07/09 13:50:14 agc Exp $ +$NetBSD: patch-sum,v 1.2 1999/08/09 17:31:09 tron Exp $ MD5 (patch-aa) = a5511cb5fb8626e7a085c400b6f22cef MD5 (patch-ab) = 057b5f839e0c57763948488a193c4aa2 MD5 (patch-ac) = 20963138d730b5213c99b336fe8c7bed MD5 (patch-ad) = 73f83736402e55f557e0d06275bedfcf -MD5 (patch-ae) = ed4a44762cfee9011d5b63e71514004c +MD5 (patch-ae) = f3dae9aa0d501f6391d5d6e1060def23 MD5 (patch-af) = aa87dfac61ba6ff1f7c0a1f24bda3e4a MD5 (patch-ag) = d3bf74f2a03c89608d3afca93e6aaf97 MD5 (patch-ah) = 484ca08713bcebc457c88335720dd78f diff --git a/audio/snd/patches/patch-ae b/audio/snd/patches/patch-ae index 00b78198cb2..9ee92c9d198 100644 --- a/audio/snd/patches/patch-ae +++ b/audio/snd/patches/patch-ae @@ -1,16 +1,16 @@ -$NetBSD: patch-ae,v 1.4 1998/08/07 10:36:09 agc Exp $ +$NetBSD: patch-ae,v 1.5 1999/08/09 17:31:10 tron Exp $ ---- snd.orig/makefile.netbsd Thu Jan 1 01:00:00 1970 -+++ makefile.netbsd Sun Feb 22 02:32:49 1998 +--- makefile.netbsd.orig Mon Aug 9 19:22:24 1999 ++++ makefile.netbsd Mon Aug 9 19:25:36 1999 @@ -0,0 +1,30 @@ +# Snd make file for NetBSD, assuming Motif is available (audio currently stubbed out) + +CC = gcc +#CFLAGS = -O2 -DXPM -DHAVE_OSS -I${X11BASE}/include -I${LOCALBASE}/include -+CFLAGS = -DXPM -DHAVE_OSS -I${X11BASE}/include -I${LOCALBASE}/include ++CFLAGS += -DXPM -DHAVE_OSS -I${X11BASE}/include -I${LOCALBASE}/include +CFLAGS += -g + -+LIBS = -L${X11BASE}/lib -lMrm -lXm -lXpm -lXmu -lXt -lXext -lX11 -lm -lossaudio ++LIBS = -L${X11BASE}/lib -Wl,-R${X11BASE}/lib -lMrm -lXm -lXpm -lXmu -lSM -lXt -lXext -lX11 -lm -lossaudio +CLM_HEADERS = cmus_prototypes.h cmus.h sound_types.h +SND_HEADERS = snd.h snd-0.h snd-1.h snd-ufun.h snd-strings.h sndclm.h +SND_X_HEADERS = snd-x0.h snd-x1.h |