aboutsummaryrefslogtreecommitdiff
path: root/shared/common
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-01-02 06:34:02 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-01-02 06:34:02 +0000
commitbaab5287be57df7cf4fb557cb741c2dfd2506877 (patch)
treec0d1160f7e286bd70a24b229e4b25a0957c908c1 /shared/common
parentced404f8b0abe200548e54db797451efbf1fe261 (diff)
support Debian GNU/Hurd and GNU/kFreeBSD by using same settings as GNU/Linux
svn path=/trunk/externals/miXed/; revision=15862
Diffstat (limited to 'shared/common')
-rw-r--r--shared/common/mifi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shared/common/mifi.c b/shared/common/mifi.c
index e3da3fe..c0a7178 100644
--- a/shared/common/mifi.c
+++ b/shared/common/mifi.c
@@ -15,7 +15,8 @@
#include "m_pd.h"
#include "mifi.h"
-#ifdef __linux__
+/* this is for GNU/Linux and also Debian GNU/Hurd and GNU/kFreeBSD */
+#if defined(__linux__) || defined(__FreeBSD_kernel__) || defined(__GNU__) || defined(__GLIBC__)
#include <sys/types.h>
#ifndef uint32
typedef u_int32_t uint32;