summaryrefslogtreecommitdiff
path: root/audio/waveplay
diff options
context:
space:
mode:
authorPeter Pentchev <roam@FreeBSD.org>2000-12-10 15:36:42 +0000
committerPeter Pentchev <roam@FreeBSD.org>2000-12-10 15:36:42 +0000
commit734191c77e12721a9ac4b276077708addd903dad (patch)
treecb05de8e164ea5760ada40f0d372725235c43cdf /audio/waveplay
parentUpdate to 2000.12.10 (diff)
No longer needed in 2000.12.10
PR: 23418 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=35819
Diffstat (limited to 'audio/waveplay')
-rw-r--r--audio/waveplay/files/patch-aa10
-rw-r--r--audio/waveplay/files/patch-ab19
-rw-r--r--audio/waveplay/files/patch-ac51
3 files changed, 0 insertions, 80 deletions
diff --git a/audio/waveplay/files/patch-aa b/audio/waveplay/files/patch-aa
deleted file mode 100644
index 768cce92f351..000000000000
--- a/audio/waveplay/files/patch-aa
+++ /dev/null
@@ -1,10 +0,0 @@
---- Makefile.orig Thu Dec 23 17:48:19 1999
-+++ Makefile Thu Dec 23 17:48:39 1999
-@@ -1,7 +1,5 @@
- #CC = gcc28
--CC = cc #egcc
- #CFLAGS = -g -O -Wall -DDEBUG
--CFLAGS = -O -Wall
- SRC = waveplay.c
- OBJS = waveplay.o
- HDR = wavefmt.h
diff --git a/audio/waveplay/files/patch-ab b/audio/waveplay/files/patch-ab
deleted file mode 100644
index 9403e8c6089c..000000000000
--- a/audio/waveplay/files/patch-ab
+++ /dev/null
@@ -1,19 +0,0 @@
-*** waveplay.c~ Wed Sep 9 14:24:05 1998
---- waveplay.c Wed Nov 24 15:11:40 1999
-***************
-*** 150,156 ****
- {
- if (!stdin_flag)
- fprintf(stderr, "File name : %s\n", filename);
-! fprintf(stderr, "Sampling rate : %ld Hz\n", wf.nSamplesPerSec);
- fprintf(stderr, "Bits/Sample : %d Bits\n", wf.wBitsPerSample);
- fprintf(stderr, "Channels : %d\n", wf.nChannels);
- if (!rflag)
---- 150,156 ----
- {
- if (!stdin_flag)
- fprintf(stderr, "File name : %s\n", filename);
-! fprintf(stderr, "Sampling rate : %d Hz\n", wf.nSamplesPerSec);
- fprintf(stderr, "Bits/Sample : %d Bits\n", wf.wBitsPerSample);
- fprintf(stderr, "Channels : %d\n", wf.nChannels);
- if (!rflag)
diff --git a/audio/waveplay/files/patch-ac b/audio/waveplay/files/patch-ac
deleted file mode 100644
index e1dd35fb3785..000000000000
--- a/audio/waveplay/files/patch-ac
+++ /dev/null
@@ -1,51 +0,0 @@
-*** wavefmt.h~ Wed Sep 9 14:24:05 1998
---- wavefmt.h Wed Nov 24 15:05:57 1999
-***************
-*** 11,33 ****
- /* 構造体定義 (ref. MS-Windows mmsystem.h) */
- typedef struct tWAVEFORMAT
- {
-! u_short wFormatTag;
-! u_short nChannels;
-! u_long nSamplesPerSec;
-! u_long nAvgBytesPerSec;
-! u_short nBlockAlign;
-! u_short wBitsPerSample;
- } WAVEFORMAT, *PWAVEFORMAT;
-
- typedef struct tWAVEFORMATEX
- {
-! u_short wFormatTag;
-! u_short nChannels;
-! u_long nSamplesPerSec;
-! u_long nAvgBytesPerSec;
-! u_short nBlockAlign;
-! u_short wBitsPerSample;
-! u_short cbSize;
- } WAVEFORMATEX, *PWAVEFORMATEX;
-
- #endif /* _WAVE_FMT_H_ */
---- 11,33 ----
- /* 構造体定義 (ref. MS-Windows mmsystem.h) */
- typedef struct tWAVEFORMAT
- {
-! u_int16_t wFormatTag;
-! u_int16_t nChannels;
-! u_int32_t nSamplesPerSec;
-! u_int32_t nAvgBytesPerSec;
-! u_int16_t nBlockAlign;
-! u_int16_t wBitsPerSample;
- } WAVEFORMAT, *PWAVEFORMAT;
-
- typedef struct tWAVEFORMATEX
- {
-! u_int16_t wFormatTag;
-! u_int16_t nChannels;
-! u_int32_t nSamplesPerSec;
-! u_int32_t nAvgBytesPerSec;
-! u_int16_t nBlockAlign;
-! u_int16_t wBitsPerSample;
-! u_int16_t cbSize;
- } WAVEFORMATEX, *PWAVEFORMATEX;
-
- #endif /* _WAVE_FMT_H_ */