0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 09:06:21 +01:00
This commit is contained in:
Dwight 2010-05-11 16:21:24 -04:00
parent 9ba63e65c8
commit 9684c9cac5
2 changed files with 3 additions and 2 deletions

View File

@ -884,7 +884,8 @@ def doConfigure( myenv , needJava=True , needPcre=True , shell=False ):
return True
if failIfNotFound:
print( "can't find library " + str( poss ) + " in " + str( myenv["LIBPATH"] ) )
print( "can't find or link against library " + str( poss ) + " in " + str( myenv["LIBPATH"] ) )
print( "see config.log for more information" )
Exit(1)
return False

View File

@ -7,7 +7,7 @@ namespace mongo {
struct rstime {
unsigned long long v;
unsigned server() const { return v >> (64-8); }
unsigned op() const { return v & 0xffffffffffffff; }
unsigned op() const { return v & 0xffffffffffffffL; }
};
}