pkgsrc/net/speakfreely/patches/patch-af
jlam 47369ef416 Merge net/speakfreely and net/speakfreely-crypto. Allow building without
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.
2000-01-17 16:02:33 +00:00

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