summaryrefslogtreecommitdiff
path: root/games/bzflag/files/patch-LinuxMedia.cxx
diff options
context:
space:
mode:
authorNick Sayer <nsayer@FreeBSD.org>2001-03-26 16:51:54 +0000
committerNick Sayer <nsayer@FreeBSD.org>2001-03-26 16:51:54 +0000
commita967a694ca6a1f378e2a4042af0757c8aaefe315 (patch)
treea6e0176365b16aedf744dc99d8492745774ddc24 /games/bzflag/files/patch-LinuxMedia.cxx
parentAdd ruby-sdl, a Ruby extension library to use SDL library. Currently (diff)
1. Update to 1.7e.1. d.9 is no longer interoperable.
2. Get rid of half-speed audio flag. It breaks audio on Yamaha chipsets. 3. The program maintainer has a bad habit of morphing the distfile and WRKSRC name. Grr. 4. Some patches were subsumed and thus deleted. Other stuff has come up though and thus must be patched. 5. Take over MAINTAINERship. PR: ports/26112 Approved by: nbm
Notes
Notes: svn path=/head/; revision=40402
Diffstat (limited to 'games/bzflag/files/patch-LinuxMedia.cxx')
-rw-r--r--games/bzflag/files/patch-LinuxMedia.cxx31
1 files changed, 0 insertions, 31 deletions
diff --git a/games/bzflag/files/patch-LinuxMedia.cxx b/games/bzflag/files/patch-LinuxMedia.cxx
deleted file mode 100644
index c6b5636ca19a..000000000000
--- a/games/bzflag/files/patch-LinuxMedia.cxx
+++ /dev/null
@@ -1,31 +0,0 @@
---- src/platform/LinuxMedia.cxx.orig Sat Jan 15 04:09:48 2000
-+++ src/platform/LinuxMedia.cxx Fri Aug 18 16:44:02 2000
-@@ -13,16 +13,27 @@
- #include "LinuxMedia.h"
- #include <math.h>
- #include <fcntl.h>
-+#include <sys/param.h>
-+#if !defined(BSD)
- #include <endian.h>
-+#else
-+#include <machine/endian.h>
-+#endif
- #include <sys/time.h>
--#include <sys/types.h>
- #include <unistd.h>
- #include <sys/wait.h>
- #include <signal.h>
-+#if !defined(BSD)
- #include <sys/soundcard.h>
-+#else
-+#include <machine/soundcard.h>
-+#endif
- #include <sys/ioctl.h>
- #include <TimeKeeper.h>
- #include <errno.h>
-+#if defined(BSD)
-+#include <string.h>
-+#endif
-
- #ifdef HALF_RATE_AUDIO
- static const int defaultAudioRate=11025;