summaryrefslogtreecommitdiff
path: root/databases/mongodb/patches/patch-src_third__party_wiredtiger_SConscript
blob: 2314d210b6526d0f178ee44bc50bcc17ead3372a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$NetBSD: patch-src_third__party_wiredtiger_SConscript,v 1.4 2016/06/17 11:51:08 fhajny Exp $

* Add NetBSD case.

--- src/third_party/wiredtiger/SConscript.orig	2016-06-02 14:46:27.000000000 +0000
+++ src/third_party/wiredtiger/SConscript
@@ -51,8 +51,12 @@ elif env.TargetOSIs('solaris'):
     # For an explanation of __EXTENSIONS__,
     # see http://docs.oracle.com/cd/E19253-01/816-5175/standards-5/index.html
     env.Append(CPPDEFINES=["__EXTENSIONS__"])
+elif env.TargetOSIs('dragonfly'):
+    env.Append(CPPPATH=["build_dragonfly"])
 elif env.TargetOSIs('freebsd'):
     env.Append(CPPPATH=["build_freebsd"])
+elif env.TargetOSIs('netbsd'):
+    env.Append(CPPPATH=["build_netbsd"])
 elif env.TargetOSIs('openbsd'):
     env.Append(CPPPATH=["build_openbsd"])
 elif env.TargetOSIs('linux'):