summaryrefslogtreecommitdiff
path: root/databases/mongodb/patches/patch-src_third__party_wiredtiger_SConscript
diff options
context:
space:
mode:
authorryoon <ryoon>2015-05-02 08:10:33 +0000
committerryoon <ryoon>2015-05-02 08:10:33 +0000
commit9f11e0bca912bb378db0b75dabee1b4974f75c4e (patch)
treefa80f1ac0b10e0d6b8b1806c285bedb46e81e885 /databases/mongodb/patches/patch-src_third__party_wiredtiger_SConscript
parent23f380fa79576edb44a35c39163cca0158ec4c2a (diff)
downloadpkgsrc-9f11e0bca912bb378db0b75dabee1b4974f75c4e.tar.gz
Import mongodb-3.0.2 as databases/mongodb from pkgsrc-wip/mongodb.
Packged by jafour1 and updated by some users. Mongo (from "humongous") is a high-performance, open source, schema-free, document-oriented database. It features: document data model with dynamic schemas; full, flexible index support and rich queries; auto-Sharding for horizontal scalability; built-in replication for high availability; text search; advanced security; aggregation Framework and MapReduce; large media storage with GridFS.
Diffstat (limited to 'databases/mongodb/patches/patch-src_third__party_wiredtiger_SConscript')
-rw-r--r--databases/mongodb/patches/patch-src_third__party_wiredtiger_SConscript24
1 files changed, 24 insertions, 0 deletions
diff --git a/databases/mongodb/patches/patch-src_third__party_wiredtiger_SConscript b/databases/mongodb/patches/patch-src_third__party_wiredtiger_SConscript
new file mode 100644
index 00000000000..5628d4d707c
--- /dev/null
+++ b/databases/mongodb/patches/patch-src_third__party_wiredtiger_SConscript
@@ -0,0 +1,24 @@
+$NetBSD: patch-src_third__party_wiredtiger_SConscript,v 1.1 2015/05/02 08:10:33 ryoon Exp $
+
+* Add NetBSD case.
+
+--- src/third_party/wiredtiger/SConscript.orig 2015-04-08 20:28:08.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")
+
+ env = env.Clone()
+ env.InjectThirdPartyIncludePaths(libraries=['snappy', 'zlib'])
+@@ -28,6 +28,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"])