mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 20:39:18 -04:00
the realtime ARQ modes pactor 1, amtor, gtor without a ptc, only with a soundcard and a pc and linux(FreeBSD), all of which need not be the newest. The core of hf, the heart of the program (hfkernel) is a real master-piece of code, it has originally been made by Tom Sailer, many thanks Tom! hf can also do MT63 and has a CW elbug function. WWW: http://www.hf.webmasternet.org - Diane Bruce, VA3DB db@db.net PR: ports/101452 Submitted by: db
25 lines
474 B
C
25 lines
474 B
C
--- dcf77/audioout.c.orig Sun Jul 30 12:05:54 2006
|
|
+++ dcf77/audioout.c Sun Jul 30 12:06:52 2006
|
|
@@ -44,6 +44,9 @@
|
|
#include <stropts.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_CONF_H
|
|
+#ifdef __FreeBSD__
|
|
+#include <sys/param.h>
|
|
+#endif
|
|
#include <sys/conf.h>
|
|
#endif
|
|
|
|
@@ -51,7 +54,12 @@
|
|
#include <sys/mman.h>
|
|
#include <sched.h>
|
|
#include <sys/soundcard.h>
|
|
+#ifdef __linux__
|
|
#include <endian.h>
|
|
+#endif
|
|
+#ifdef __FreeBSD__
|
|
+#include <sys/endian.h>
|
|
+#endif
|
|
#endif
|
|
|
|
#include "dcf77.h"
|