summaryrefslogtreecommitdiff
path: root/databases/mongodb/patches/patch-src_third__party_wiredtiger_SConscript
blob: efcf100ee3a365b6719077b9ab008ab8b416f4c8 (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.3 2016/02/12 03:37:24 ryoon Exp $

* Add NetBSD case.

--- src/third_party/wiredtiger/SConscript.orig	2016-01-05 18:31:44.000000000 +0000
+++ src/third_party/wiredtiger/SConscript
@@ -48,8 +48,12 @@ elif env.TargetOSIs('osx'):
     env.Append(CPPPATH=["build_darwin"])
 elif env.TargetOSIs('solaris'):
     env.Append(CPPPATH=["build_solaris"])
+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'):