mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 05:10:29 -04:00
- Merge REINPLACE_CMD fix into existing files/patch-radio.c - Standardize header and generally cleanup Makefile - Improve COMMENT and port description text while I'm here - Transfer maintainership to the submitter PR: 199320 Submitted by: Chris Hutchinson
26 lines
583 B
C
26 lines
583 B
C
--- radio.c.orig Tue Nov 27 13:30:42 2001
|
|
+++ radio.c Sun Sep 8 03:13:58 2002
|
|
@@ -63,17 +63,17 @@
|
|
#ifdef __NetBSD__
|
|
#include <dev/ic/bt8xx.h>
|
|
#include <soundcard.h>
|
|
-#else
|
|
-#ifdef linux
|
|
+#elif defined(linux)
|
|
#include <linux/bttv.h>
|
|
#include <sys/soundcard.h>
|
|
+#elif defined(__FreeBSD__)
|
|
+#include <sys/soundcard.h>
|
|
+#include <dev/bktr/ioctl_bt848.h>
|
|
#else
|
|
-#include <machine/ioctl_bt848.h>
|
|
-#ifdef JUHA_DRIVER
|
|
-#include <machine/ioctl_tuner.h>
|
|
-#endif
|
|
#include <machine/soundcard.h>
|
|
#endif
|
|
+#ifdef JUHA_DRIVER
|
|
+#include <machine/ioctl_tuner.h>
|
|
#endif
|
|
|
|
#include <X11/X.h>
|