blob: 523b6c251dd1b504e67a27542a3c2b492a9aefe6 (
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.6 2019/03/05 19:35:58 adam Exp $
Support NetBSD and Dragonfly.
--- src/third_party/wiredtiger/SConscript.orig 2017-04-20 21:43:42.000000000 +0000
+++ src/third_party/wiredtiger/SConscript
@@ -62,8 +62,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'):
|