mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
22 lines
646 B
Plaintext
22 lines
646 B
Plaintext
$NetBSD: patch-ah,v 1.3 2013/03/24 16:51:08 joerg Exp $
|
|
--- MP3Broadcaster/MP3Broadcaster.cpp.orig 2005-04-27 10:17:42.000000000 +0000
|
|
+++ MP3Broadcaster/MP3Broadcaster.cpp
|
|
@@ -38,13 +38,16 @@
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
+#ifdef __NetBSD__
|
|
+#include <sys/param.h>
|
|
+#endif
|
|
|
|
#ifndef __Win32__
|
|
#include <netdb.h>
|
|
#if defined (__solaris__) || defined (__osf__) || defined (__hpux__)
|
|
#include "daemon.h"
|
|
#else
|
|
- #ifndef __FreeBSD__
|
|
+ #if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__))
|
|
#include <sys/sysctl.h>
|
|
#endif
|
|
#endif
|