summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2011-09-01 23:16:21 -0400
committerEliot Horowitz <eliot@10gen.com>2011-09-01 23:16:21 -0400
commit79b292b4456fabac9b11bcd59ee24fd341708519 (patch)
treee5a4f829cefd215c48d80c54cb45c0c4edf65612
parent4d8cd672bb03d466130ba8a48b828e03bb72b3cf (diff)
downloadmongo-79b292b4456fabac9b11bcd59ee24fd341708519.tar.gz
ssl on osx needs libcrypto
-rw-r--r--SConstruct2
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 405eae84f8b..4e46052a6d8 100644
--- a/SConstruct
+++ b/SConstruct
@@ -744,6 +744,8 @@ if "uname" in dir(os):
if has_option( "ssl" ):
env.Append( CPPDEFINES=["MONGO_SSL"] )
env.Append( LIBS=["ssl"] )
+ if darwin:
+ env.Append( LIBS=["crypto"] )
try:
umask = os.umask(022)