diff options
author | marcus <marcus@FreeBSD.org> | 2003-10-05 19:38:38 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-10-05 19:38:38 +0000 |
commit | 14af9b0953bd76f8e433e8ad696f0c95c16aec5d (patch) | |
tree | f307a54370bf5f3386a432025d1a505755ebc9d7 | |
parent | 01fe2e9c737ca8272cc9132bd84609dd9168ee6c (diff) | |
download | FreeBSD-ports-14af9b0953bd76f8e433e8ad696f0c95c16aec5d.zip FreeBSD-ports-14af9b0953bd76f8e433e8ad696f0c95c16aec5d.tar.gz |
Fix an LD_PRELOAD in esddsp.
PR: 57610
Submitted by: James McNaughton <jtm63@rcn.com>
-rw-r--r-- | audio/esound/Makefile | 1 | ||||
-rw-r--r-- | audio/esound/files/patch-esddsp.in | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/audio/esound/Makefile b/audio/esound/Makefile index 03b36e9..b415b4d 100644 --- a/audio/esound/Makefile +++ b/audio/esound/Makefile @@ -7,6 +7,7 @@ PORTNAME= esound PORTVERSION= 0.2.32 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.2 diff --git a/audio/esound/files/patch-esddsp.in b/audio/esound/files/patch-esddsp.in new file mode 100644 index 0000000..da937fd --- /dev/null +++ b/audio/esound/files/patch-esddsp.in @@ -0,0 +1,11 @@ +--- esddsp.in.orig Sun Oct 5 15:31:52 2003 ++++ esddsp.in Sun Oct 5 15:32:08 2003 +@@ -97,7 +97,7 @@ + prefix=@prefix@ + exec_prefix=@exec_prefix@ + +-LD_PRELOAD="@libdir@/libesddsp.so.@ESD_MAJOR_VERSION@ @libdir@/libesd.so.@ESD_MAJOR_VERSION@ $LD_PRELOAD" ++LD_PRELOAD="@libdir@/libesddsp.so @libdir@/libesd.so $LD_PRELOAD" + export LD_PRELOAD + + # invoke the program with the args given |