diff options
author | kris <kris@FreeBSD.org> | 2003-10-13 15:21:27 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-10-13 15:21:27 +0800 |
commit | be37d22f847aa261a68010ed26575f95e27c7a44 (patch) | |
tree | 33715c9a0995147e783b740aa8c2df7594fde6c2 /emulators/fmsx | |
parent | 9cc7034e313f11d876566ce4ef9cd360b644a347 (diff) | |
download | freebsd-ports-graphics-be37d22f847aa261a68010ed26575f95e27c7a44.tar.gz freebsd-ports-graphics-be37d22f847aa261a68010ed26575f95e27c7a44.tar.zst freebsd-ports-graphics-be37d22f847aa261a68010ed26575f95e27c7a44.zip |
Fix build on -current (machine/soundcard.h -> sys/soundcard.h)
Diffstat (limited to 'emulators/fmsx')
-rw-r--r-- | emulators/fmsx/files/patch-ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/emulators/fmsx/files/patch-ac b/emulators/fmsx/files/patch-ac new file mode 100644 index 00000000000..344547b0df0 --- /dev/null +++ b/emulators/fmsx/files/patch-ac @@ -0,0 +1,11 @@ +--- SndUnix.c.orig Mon Oct 13 00:19:55 2003 ++++ SndUnix.c Mon Oct 13 00:20:18 2003 +@@ -73,7 +73,7 @@ + + #else /* SUN_AUDIO */ + +-#ifdef LINUX ++#if defined(LINUX) || defined(__FreeBSD__) + #include <sys/soundcard.h> + #else + #include <machine/soundcard.h> |