47369ef416
using patented IDEA algorithm. Uses two new make variables which may be defined in mk.conf: USE_CRYPTO: YES, NO USE_IDEA: YES, NO Defaults to building with crypto but without IDEA.
17 lines
412 B
Text
17 lines
412 B
Text
$NetBSD: patch-af,v 1.3 2000/01/17 16:02:34 jlam Exp $
|
|
|
|
--- soundbyte.c.orig Tue Sep 14 08:55:17 1999
|
|
+++ soundbyte.c Sat Jan 15 11:59:59 2000
|
|
@@ -27,9 +27,11 @@
|
|
#else
|
|
#include <sun/audioio.h>
|
|
#endif
|
|
-#else /* FreeBSD / Linux */
|
|
+#else /* NetBSD / FreeBSD / Linux */
|
|
#ifdef LINUX
|
|
#include <linux/soundcard.h>
|
|
+#elif defined(__NetBSD__)
|
|
+#include <soundcard.h>
|
|
#else
|
|
#include <machine/soundcard.h>
|
|
#endif
|