0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00

Merge branch 'master' of git@github.com:mongodb/mongo

This commit is contained in:
Dwight 2009-05-28 13:16:42 -04:00
commit 3eb90c3041

View File

@ -475,6 +475,10 @@ def doConfigure( myenv , needJava=True , needPcre=True , shell=False ):
myenv["LINKFLAGS_CLEAN"] = list( myenv["LINKFLAGS"] )
myenv["LIBS_CLEAN"] = list( myenv["LIBS"] )
if not conf.CheckCXX():
print( "c++ compiled not installed!" )
Exit(1)
if nix and not shell:
if not conf.CheckLib( "stdc++" ):
print( "can't find stdc++ library which is needed" );