diff options
author | Eliot Horowitz <eliot@10gen.com> | 2011-08-19 10:34:08 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2011-08-19 10:34:08 -0400 |
commit | dfdfac782d51b28752fa44b1b0d97ce424a37868 (patch) | |
tree | cf41f55fc882102d7361763e537b3d7d1eef0e19 /third_party | |
parent | db5ace7c7c837502b6c21f99ac0c8ace4520d679 (diff) | |
download | mongo-dfdfac782d51b28752fa44b1b0d97ce424a37868.tar.gz |
don't use pcre heap for solaris
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/pcre-7.4/config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/pcre-7.4/config.h b/third_party/pcre-7.4/config.h index e958667c0d5..29fe72660fc 100644 --- a/third_party/pcre-7.4/config.h +++ b/third_party/pcre-7.4/config.h @@ -166,7 +166,10 @@ them both to 0; an emulation function will be used. */ --disable-stack-for-recursion). */ /* #undef NO_RECURSE */ /* mongodb: don't recurse, don't want to use much stack or blow stack */ +#ifndef __sunos__ +/* TODO this doesn't compile on sunos?? */ #define NO_RECURSE 1 +#endif /* Name of package */ #define PACKAGE "pcre" |