1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/audio/wavplay/files/patch-ab
Pete Fritchman 0467aae499 machine/soundcard.h -> sys/soundcard.h
Submitted by:	bento
2002-06-07 02:21:52 +00:00

29 lines
564 B
Plaintext

*** 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"