diff options
author | Torsten Blum <torstenb@FreeBSD.org> | 1994-11-01 22:14:31 +0000 |
---|---|---|
committer | Torsten Blum <torstenb@FreeBSD.org> | 1994-11-01 22:14:31 +0000 |
commit | 189255858229da73a78a48fd1fe8346227ea46c1 (patch) | |
tree | 129c3726a501d7fe615694ad0013e2fe009eac7a /audio/sox | |
parent | a40317a9f9f1123915650c790408978a7827ba98 (diff) | |
download | ports-189255858229da73a78a48fd1fe8346227ea46c1.tar.gz ports-189255858229da73a78a48fd1fe8346227ea46c1.zip |
Added -D_HAVE_PARAM_H to CFLAGS
Notes
Notes:
svn path=/head/; revision=311
Diffstat (limited to 'audio/sox')
-rw-r--r-- | audio/sox/files/patch-aa | 36 | ||||
-rw-r--r-- | audio/sox/files/patch-ab | 6 |
2 files changed, 5 insertions, 37 deletions
diff --git a/audio/sox/files/patch-aa b/audio/sox/files/patch-aa index 827485de2259..cbc245dbca15 100644 --- a/audio/sox/files/patch-aa +++ b/audio/sox/files/patch-aa @@ -1,6 +1,5 @@ -diff -c -r sbdsp.c.orig sbdsp.c -*** sbdsp.c.orig Mon Jul 26 21:58:00 1993 ---- sbdsp.c Mon Oct 17 16:07:59 1994 +*** sbdsp.c.orig Mon Jul 26 12:58:00 1993 +--- sbdsp.c Mon Oct 31 18:26:56 1994 *************** *** 21,27 **** #include <i386/isa/sblast.h> @@ -60,34 +59,3 @@ diff -c -r sbdsp.c.orig sbdsp.c #else ioctl(fileno(ft->fp), DSP_IOCTL_VOICE, 1); ioctl(fileno(ft->fp), DSP_IOCTL_SPEED, ft->info.rate); -diff -c -r st.h.orig st.h -*** st.h.orig Mon Jul 26 21:58:00 1993 ---- st.h Mon Oct 17 16:19:26 1994 -*************** -*** 34,39 **** ---- 34,43 ---- - #include "amiga.h" - #endif /* AMIGA */ - -+ #ifdef bsd -+ #include <sys/param.h> -+ #endif -+ - /* - * Handler structure for each format. - */ -*************** -*** 211,218 **** ---- 215,226 ---- - #if defined(i386) || !defined(__STDC__) - /* usually be a const in stdlib.h ?? */ - /* this is turning out to be a headache */ -+ -+ #if BSD < 199306 - extern char *sys_errlist[]; - #define strerror(errno) sys_errlist[errno] -+ #endif -+ - #endif - #endif - diff --git a/audio/sox/files/patch-ab b/audio/sox/files/patch-ab index 1aa5a032b825..0135eb323bc7 100644 --- a/audio/sox/files/patch-ab +++ b/audio/sox/files/patch-ab @@ -1,5 +1,5 @@ -*** Makefile.unx.orig Mon Jul 26 21:58:00 1993 ---- Makefile.unx Thu Oct 20 23:00:41 1994 +*** Makefile.unx.orig Mon Jul 26 12:58:00 1993 +--- Makefile.unx Mon Oct 31 19:19:42 1994 *************** *** 122,128 **** --- 122,139 ---- @@ -8,7 +8,7 @@ + + # FreeBSD 1.x / 2.x -+ CFLAGS = -O -DLINUXSOUND -Dbsd ++ CFLAGS = -O -DLINUXSOUND -D_HAVE_PARAM_H + CC = cc + AR = ar r + RANLIB = ranlib |