diff options
Diffstat (limited to 'audio/wavplay/files/patch-client.c')
-rw-r--r-- | audio/wavplay/files/patch-client.c | 52 |
1 files changed, 24 insertions, 28 deletions
diff --git a/audio/wavplay/files/patch-client.c b/audio/wavplay/files/patch-client.c index 4985e3bdf967..2307cc352fc9 100644 --- a/audio/wavplay/files/patch-client.c +++ b/audio/wavplay/files/patch-client.c @@ -1,28 +1,24 @@ -*** client.c.orig Sat Jan 15 13:05:07 2000 ---- client.c Sat Jan 15 13:08:42 2000 -*************** -*** 47,53 **** ---- 47,55 ---- - #include <unistd.h> - #include <errno.h> - #include <time.h> -+ #ifndef FREEBSD - #include <malloc.h> -+ #endif - #include <string.h> - #include <memory.h> - #include <signal.h> -*************** -*** 57,63 **** ---- 59,69 ---- - #include <sys/wait.h> - #include <sys/stat.h> - #include <assert.h> -+ #ifndef FREEBSD - #include <linux/soundcard.h> -+ #else -+ #include <sys/soundcard.h> -+ #endif - #include "wavplay.h" - #include "client.h" - +--- client.c.orig 1999-12-04 00:06:42 UTC ++++ client.c +@@ -47,7 +47,9 @@ static const char rcsid[] = "@(#)client. + #include <unistd.h> + #include <errno.h> + #include <time.h> ++#ifndef FREEBSD + #include <malloc.h> ++#endif + #include <string.h> + #include <memory.h> + #include <signal.h> +@@ -57,7 +59,11 @@ static const char rcsid[] = "@(#)client. + #include <sys/wait.h> + #include <sys/stat.h> + #include <assert.h> ++#ifndef FREEBSD + #include <linux/soundcard.h> ++#else ++#include <sys/soundcard.h> ++#endif + #include "wavplay.h" + #include "client.h" + |