blob: 95fa6abc70cf881cfb2a926881fc6d60c4b387aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- include/ogdf/basic/internal/config.h.orig 2015-05-29 15:36:28 UTC
+++ include/ogdf/basic/internal/config.h
@@ -95,6 +95,11 @@ using std::string;
#define OGDF_SYSTEM_OSX
#endif
+// Note: FreeBSD machines will be both OGDF_SYSTEM_UNIX and OGDF_SYSTEM_OSX
+#if defined(__FreeBSD__) || defined(__DragonFly__)
+#define OGDF_SYSTEM_FREEBSD
+#endif
+
// C++11 standard
|