summaryrefslogtreecommitdiff
path: root/audio/rsynth/patches
diff options
context:
space:
mode:
authoraugustss <augustss>1997-10-28 23:18:20 +0000
committeraugustss <augustss>1997-10-28 23:18:20 +0000
commitf8e906be96435c1ec9f3f8dba3ab6d8698cb08be (patch)
treecc8ee8439ae9a5d7d4a09af2bda1536118792658 /audio/rsynth/patches
parent3492a1d2d3c36ad01439a85ba2bad6462bb0288d (diff)
downloadpkgsrc-f8e906be96435c1ec9f3f8dba3ab6d8698cb08be.tar.gz
Initial import of FreeBSD audio packages.
Diffstat (limited to 'audio/rsynth/patches')
-rw-r--r--audio/rsynth/patches/patch-aa9
-rw-r--r--audio/rsynth/patches/patch-ab30
-rw-r--r--audio/rsynth/patches/patch-ac11
3 files changed, 50 insertions, 0 deletions
diff --git a/audio/rsynth/patches/patch-aa b/audio/rsynth/patches/patch-aa
new file mode 100644
index 00000000000..44906e467d3
--- /dev/null
+++ b/audio/rsynth/patches/patch-aa
@@ -0,0 +1,9 @@
+*** naplay.c.ORIG Tue Nov 1 19:40:13 1994
+--- naplay.c Sat Jun 10 19:51:40 1995
+***************
+*** 1,3 ****
+--- 1,4 ----
++ #include <sys/types.h>
+ #include <useconfig.h>
+ #include <sys/time.h>
+ #include <sys/stat.h>
diff --git a/audio/rsynth/patches/patch-ab b/audio/rsynth/patches/patch-ab
new file mode 100644
index 00000000000..60772e54d8a
--- /dev/null
+++ b/audio/rsynth/patches/patch-ab
@@ -0,0 +1,30 @@
+*** configure.in.orig Tue Nov 8 14:30:51 1994
+--- configure.in Sat Jul 1 18:02:56 1995
+***************
+*** 11,17 ****
+ dbm=none
+ make_dist=/dev/null
+
+! AC_PREFIX_PROGRAM(gcc)
+
+ if test -z "$CC" && test -n "$GCC" ; then
+ CC=$GCC
+--- 11,18 ----
+ dbm=none
+ make_dist=/dev/null
+
+! dnl *sigh* - torstenb
+! dnl AC_PREFIX_PROGRAM(gcc)
+
+ if test -z "$CC" && test -n "$GCC" ; then
+ CC=$GCC
+***************
+*** 41,46 ****
+--- 42,48 ----
+ *-sgi-*) hplay=sgi ;;
+ *-next-*) hplay=NeXT; AC_CHECK_HEADERS(libc.h) ;;
+ *-*-linux*) hplay=linux ;;
++ *-*-freebsd*) hplay=freebsd ;;
+ *-*-hpux*) hplay=hpux ;;
+ *-*-*) echo "Unknown host type $host" ;;
+ esac
diff --git a/audio/rsynth/patches/patch-ac b/audio/rsynth/patches/patch-ac
new file mode 100644
index 00000000000..d2f780df5b1
--- /dev/null
+++ b/audio/rsynth/patches/patch-ac
@@ -0,0 +1,11 @@
+--- ./Makefile.in.org Tue Nov 8 05:30:52 1994
++++ ./Makefile.in Mon Jul 3 21:29:28 1995
+@@ -67,7 +67,7 @@
+ for f in $(PROGS); do \
+ $(INSTALL_PROG) $$f $(BIN_DIR); \
+ done
+- $(INSTALL) -d $(LIB_DIR)
++ if [ ! -d $(LIB_DIR) ]; then mkdir -p $(LIB_DIR); fi
+ for f in $(DICTS); do \
+ $(INSTALL_DATA) $$f $(LIB_DIR); \
+ done