Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,24 +1,19 @@
$NetBSD: patch-src_third__party_wiredtiger_SConscript,v 1.2 2015/06/23 13:31:24 ryoon Exp $
$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 2015-06-15 15:43:51.000000000 +0000
--- src/third_party/wiredtiger/SConscript.orig 2016-06-02 14:46:27.000000000 +0000
+++ src/third_party/wiredtiger/SConscript
@@ -2,7 +2,7 @@
import re
import textwrap
-Import("env windows darwin solaris linux freebsd openbsd debugBuild")
+Import("env windows darwin solaris linux freebsd openbsd netbsd debugBuild")
Import("get_option")
env = env.Clone()
@@ -32,6 +32,8 @@ elif freebsd:
@@ -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 openbsd:
env.Append(CPPPATH=["build_openbsd"])
+elif netbsd:
+elif env.TargetOSIs('netbsd'):
+ env.Append(CPPPATH=["build_netbsd"])
elif linux:
env.Append(CPPPATH=["build_linux"])
env.Append(CPPDEFINES=["_GNU_SOURCE"])
elif env.TargetOSIs('openbsd'):
env.Append(CPPPATH=["build_openbsd"])
elif env.TargetOSIs('linux'):