Import of pkgsrc-2015Q2

This commit is contained in:
2015-08-30 02:56:09 -07:00
committed by Lionel Sambuc
parent 4af1cdf7a9
commit f641581404
15409 changed files with 267784 additions and 121624 deletions

View File

@@ -0,0 +1,24 @@
$NetBSD: patch-src_third__party_wiredtiger_SConscript,v 1.2 2015/06/23 13:31:24 ryoon Exp $
* Add NetBSD case.
--- src/third_party/wiredtiger/SConscript.orig 2015-06-15 15:43:51.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:
env.Append(CPPPATH=["build_freebsd"])
elif openbsd:
env.Append(CPPPATH=["build_openbsd"])
+elif netbsd:
+ env.Append(CPPPATH=["build_netbsd"])
elif linux:
env.Append(CPPPATH=["build_linux"])
env.Append(CPPDEFINES=["_GNU_SOURCE"])