summaryrefslogtreecommitdiff
path: root/audio/xamp/patches/patch-aa
diff options
context:
space:
mode:
authorhubertf <hubertf>1999-09-17 00:48:26 +0000
committerhubertf <hubertf>1999-09-17 00:48:26 +0000
commit0b4744352e9fd530584deeb030562ae45700e71c (patch)
treec0d6de9524b9728615ebf5e23cb24295c7869fce /audio/xamp/patches/patch-aa
parent2322e66e1dcbe66afcbdd336c4c6e3337b717da0 (diff)
downloadpkgsrc-0b4744352e9fd530584deeb030562ae45700e71c.tar.gz
A version of amp (stands for `Audio Mpeg Player') plus a Qt GUI
Submitted in PR 8424 by Rui-Xiang Guo <rxg@ms25.url.com.tw>
Diffstat (limited to 'audio/xamp/patches/patch-aa')
-rw-r--r--audio/xamp/patches/patch-aa69
1 files changed, 69 insertions, 0 deletions
diff --git a/audio/xamp/patches/patch-aa b/audio/xamp/patches/patch-aa
new file mode 100644
index 00000000000..2e713c03e20
--- /dev/null
+++ b/audio/xamp/patches/patch-aa
@@ -0,0 +1,69 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/09/17 00:48:27 hubertf Exp $
+
+--- ../audioIO.c.old Sun Oct 26 10:55:27 1997
++++ ../audioIO.c Sun Oct 26 10:56:03 1997
+@@ -18,7 +18,7 @@
+ #include "audioIO_HPUX.c"
+ #endif
+
+-#ifdef OS_SunOS
++#if defined(OS_SunOS) || defined(OS_NetBSD)
+ #include "audioIO_SunOS.c"
+ #endif
+
+--- ../audioIO.h.old Sun Oct 26 10:57:10 1997
++++ ../audioIO.h Fri Oct 31 06:43:07 1997
+@@ -27,3 +27,7 @@
+ #ifdef OS_SunOS
+ #define AUSIZ 4096
+ #endif
++
++#ifdef OS_NetBSD
++ #define AUSIZ 32768
++#endif
+--- ../audioIO_SunOS.c.old Sun Oct 26 10:58:36 1997
++++ ../audioIO_SunOS.c Sun Oct 26 11:13:51 1997
+@@ -8,7 +8,11 @@
+
+ #include "amp.h"
+ #include <sys/types.h>
++#ifndef OS_NetBSD
+ #include <sys/stropts.h>
++#else
++#include <sys/ioctl.h>
++#endif
+ #include <fcntl.h>
+ #include <unistd.h>
+ #include <stdio.h>
+@@ -36,8 +40,7 @@
+ }
+ DB(audio, msg("Audio device opened on %d\n",audio_fd) );
+
+- if (ioctl(audio_fd,AUDIO_GETINFO,&auinfo)<0)
+- die("Unable to get audio info\n");
++ AUDIO_INITINFO(&auinfo);
+
+ auinfo.play.precision=16;
+ auinfo.play.encoding=AUDIO_ENCODING_LINEAR;
+--- configure.in.old Sun Oct 26 10:53:03 1997
++++ configure.in Sun Oct 26 10:54:32 1997
+@@ -58,7 +58,7 @@
+ DEFINES="-DOS_$OS_TYPE -DARCH_$ARCH_TYPE"
+ ;;
+
+- Linux|FreeBSD)
++ Linux|FreeBSD|NetBSD)
+ CC="gcc"
+ if test "$ARCH_TYPE" = "i486" ; then
+ CFLAGS_ARCH="-m486"
+--- configure.old Sun Oct 26 11:18:18 1997
++++ configure Sun Oct 26 11:18:45 1997
+@@ -1398,7 +1398,7 @@
+ DEFINES="-DOS_$OS_TYPE -DARCH_$ARCH_TYPE"
+ ;;
+
+- Linux|FreeBSD)
++ Linux|FreeBSD|NetBSD)
+ CC="gcc"
+ if test "$ARCH_TYPE" = "i486" ; then
+ CFLAGS_ARCH="-m486"