summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2015-05-08 15:11:40 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2015-05-08 15:11:50 -0400
commit216e01a7298b0176dc71e11af000a105c3ce7222 (patch)
tree85d1af8ee1123436321154bc554a715f488d8b65 /src
parent2cbd4ea656c5f040e38699bcd81126b6ecffec5f (diff)
downloadmongo-216e01a7298b0176dc71e11af000a105c3ce7222.tar.gz
SERVER-18312: 8.37 SCons Integration - 2.6 compatibility
Diffstat (limited to 'src')
-rw-r--r--src/third_party/pcre-8.37/SConscript12
-rw-r--r--src/third_party/pcre-8.37/build_windows/config.h2
2 files changed, 7 insertions, 7 deletions
diff --git a/src/third_party/pcre-8.37/SConscript b/src/third_party/pcre-8.37/SConscript
index e7b9a59a550..f4b13b379c4 100644
--- a/src/third_party/pcre-8.37/SConscript
+++ b/src/third_party/pcre-8.37/SConscript
@@ -1,6 +1,6 @@
# -*- mode: python -*-
-Import("env")
+Import("env windows solaris")
env = env.Clone()
env.Append( CPPDEFINES=[ "HAVE_CONFIG_H", ] )
@@ -28,12 +28,12 @@ for to_remove in ['-Werror', '-Wall', '-W']:
# -DPCRE_MATCH_LIMIT:STRING="200000" -DPCRE_PARENS_NEST_LIMIT:STRING="250"
# -DPCRE_SUPPORT_UTF:BOOL="1"
#
-if env.TargetOSIs('windows'):
- env.Append(CPPPATH=["build_windows"])
-elif env.TargetOSIs('solaris'):
- env.Append(CPPPATH=["build_solaris"])
+if windows:
+ env.Prepend(CPPPATH=["build_windows"])
+elif solaris:
+ env.Prepend(CPPPATH=["build_solaris"])
else:
- env.Append(CPPPATH=["build_posix"])
+ env.Prepend(CPPPATH=["build_posix"])
env.Library( "pcrecpp", [
# pcre
diff --git a/src/third_party/pcre-8.37/build_windows/config.h b/src/third_party/pcre-8.37/build_windows/config.h
index ae1d54bdabd..f2c886750e2 100644
--- a/src/third_party/pcre-8.37/build_windows/config.h
+++ b/src/third_party/pcre-8.37/build_windows/config.h
@@ -14,7 +14,7 @@
/* #undef HAVE_BCOPY */
#define HAVE_MEMMOVE 1
#define HAVE_STRERROR 1
-#define HAVE_STRTOLL 1
+/* #undef HAVE_STRTOLL */
/* #undef HAVE_STRTOQ */
#define HAVE__STRTOI64 1