mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
20 lines
798 B
Plaintext
20 lines
798 B
Plaintext
$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'):
|