$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'):