blob: 9baa414d0ab891dd3c3f094c5a2f52da1f59c8c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Author: Pino Toscano <pino@kde.org>
Description: Fixes FTBFS on GNU/kFreeBSD by creating new Q_OS_FREEBSD_KERNEL.
Last-Update: 2010-10-06
---
src/corelib/global/qglobal.h | 2 ++
1 file changed, 2 insertions(+)
--- a/src/corelib/global/qglobal.h
+++ b/src/corelib/global/qglobal.h
@@ -226,6 +226,8 @@ namespace QT_NAMESPACE {}
#elif defined(__FreeBSD__) || defined(__DragonFly__)
# define Q_OS_FREEBSD
# define Q_OS_BSD4
+#elif defined(__FreeBSD_kernel__)
+# define Q_OS_FREEBSD_KERNEL
#elif defined(__NetBSD__)
# define Q_OS_NETBSD
# define Q_OS_BSD4
|