1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00

Fix the build on -stable and -current.

PR:		ports/40949
Submitted by:	Gavin Atkinson <gavin@ury.york.ac.uk>
This commit is contained in:
Jean-Marc Zucconi 2002-07-24 12:16:00 +00:00
parent a5255d4d7f
commit 619f206336
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=63483
3 changed files with 12 additions and 3 deletions

View File

@ -5,7 +5,7 @@
#include <unistd.h>
-#include <linux/soundcard.h>
+#include <machine/soundcard.h>
+#include <sys/soundcard.h>
#include "soundsrv.h"

View File

@ -5,7 +5,7 @@
// Linux voxware output.
-#include <linux/soundcard.h>
+#include <machine/soundcard.h>
+#include <sys/soundcard.h>
// Timer stuff. Experimental.
#include <time.h>

View File

@ -1,5 +1,5 @@
--- linuxdoom-1.10/i_net.c~ Mon Dec 22 21:37:46 1997
+++ linuxdoom-1.10/i_net.c Mon Dec 14 03:26:41 1998
+++ linuxdoom-1.10/i_net.c Mon Jul 22 10:06:25 2002
@@ -23,6 +23,7 @@
static const char
rcsid[] = "$Id: patch-ae,v 1.1.1.1 1998/12/14 21:18:25 jmz Exp $";
@ -24,3 +24,12 @@
void NetSend (void);
boolean NetListen (void);
@@ -73,7 +76,7 @@
// NETWORKING
//
-int DOOMPORT = (IPPORT_USERRESERVED +0x1d );
+int DOOMPORT = 5029;
int sendsocket;
int insocket;