blob: b0e564c553ae1b2bfbc9cbcde02a9abfc098003d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-src_src_appglobals.cpp,v 1.1 2016/06/16 02:28:51 kamil Exp $
Detect NetBSD as NetBSD.
--- src/src/appglobals.cpp.orig 2016-01-23 16:43:03.000000000 +0000
+++ src/src/appglobals.cpp
@@ -49,6 +49,8 @@ namespace appglobals
const wxString AppPlatform = _T("Darwin");
#elif defined(__FreeBSD__)
const wxString AppPlatform = _T("FreeBSD");
+#elif defined(__NetBSD__)
+ const wxString AppPlatform = _T("NetBSD");
#elif defined(__UNIX__)
const wxString AppPlatform = _T("Linux");
#else
|