diff options
author | kris <kris@FreeBSD.org> | 2002-09-08 00:48:14 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-09-08 00:48:14 +0000 |
commit | 8100967472047358bb11d7868f44b8c4affe8370 (patch) | |
tree | 9f516ab4c1645f5649de1bd0817116073fa5128f /graphics | |
parent | 8f7f1f903fea440de845edaf12005530d99ffc75 (diff) | |
download | FreeBSD-ports-8100967472047358bb11d7868f44b8c4affe8370.zip FreeBSD-ports-8100967472047358bb11d7868f44b8c4affe8370.tar.gz |
Fix build on -current (machine/soundcard.h -> sys/soundcard.h, and #ifdef 0
-> #if 0)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/fxtv/files/patch-ad | 13 | ||||
-rw-r--r-- | graphics/fxtv/files/patch-ae | 11 |
2 files changed, 24 insertions, 0 deletions
diff --git a/graphics/fxtv/files/patch-ad b/graphics/fxtv/files/patch-ad new file mode 100644 index 0000000..cecee25 --- /dev/null +++ b/graphics/fxtv/files/patch-ad @@ -0,0 +1,13 @@ +--- voxware.h.orig Sat Sep 7 16:51:45 2002 ++++ voxware.h Sat Sep 7 16:51:58 2002 +@@ -30,9 +30,7 @@ + #ifndef __VOXWARE_H + #define __VOXWARE_H + +-#if defined(__FreeBSD__) +-# include <machine/soundcard.h> +-#elif defined(linux) || defined(__bsdi__) ++#if defined(linux) || defined(__bsdi__) || defined(__FreeBSD__) + # include <sys/soundcard.h> + #elif defined(__NetBSD__) || defined(__OpenBSD__) + # include <soundcard.h> diff --git a/graphics/fxtv/files/patch-ae b/graphics/fxtv/files/patch-ae new file mode 100644 index 0000000..8bc5c1c --- /dev/null +++ b/graphics/fxtv/files/patch-ae @@ -0,0 +1,11 @@ +--- remote.c.orig Sat Sep 7 16:54:12 2002 ++++ remote.c Sat Sep 7 16:54:24 2002 +@@ -65,7 +65,7 @@ + /* ******************** Local defines ************** */ + + /* FIXME: Remove this old code someday */ +-#ifdef 0 ++#if 0 + # define OLD_DEV_SYSMOUSE_STUFF + #endif + |