mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
dd76a63c00
PR: 16693 Submitted by: Greg Robinson <greg@rosevale.com.au>
29 lines
553 B
Plaintext
29 lines
553 B
Plaintext
*** server.c.orig Sat Jan 15 12:59:19 2000
|
|
--- server.c Sat Jan 15 13:17:07 2000
|
|
***************
|
|
*** 65,71 ****
|
|
--- 65,73 ----
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
+ #ifndef FREEBSD
|
|
#include <malloc.h>
|
|
+ #endif
|
|
#include <string.h>
|
|
#include <memory.h>
|
|
#include <signal.h>
|
|
***************
|
|
*** 79,85 ****
|
|
--- 81,91 ----
|
|
#ifdef SCHED_PRIORITY
|
|
#include <sched.h>
|
|
#endif
|
|
+ #ifndef FREEBSD
|
|
#include <linux/soundcard.h>
|
|
+ #else
|
|
+ #include <machine/soundcard.h>
|
|
+ #endif
|
|
#include "wavplay.h"
|
|
#include "server.h"
|
|
|