mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 00:56:44 +01:00
compile
This commit is contained in:
parent
9ba63e65c8
commit
9684c9cac5
@ -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
|
||||
|
@ -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; }
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user