Index: head/games/xmoto/files/patch-src-GameInit.cpp =================================================================== --- head/games/xmoto/files/patch-src-GameInit.cpp (nonexistent) +++ head/games/xmoto/files/patch-src-GameInit.cpp (revision 377854) @@ -0,0 +1,11 @@ +--- src/GameInit.cpp.orig 2015-01-10 18:22:36.000000000 +0100 ++++ src/GameInit.cpp 2015-01-10 18:27:28.000000000 +0100 +@@ -248,7 +248,7 @@ void GameApp::run_load(int nNumArgs, cha + Logger::setActiv(XMSession::instance()->noLog() == false); /* apply log activ mode */ + + LogInfo(std::string("X-Moto " + XMBuild::getVersionString(true)).c_str()); +- LogInfo("compiled at "__DATE__" "__TIME__); ++ LogInfo("compiled at " __DATE__ " " __TIME__); + if(SwapEndian::bigendien) { + LogInfo("Systeme is bigendien"); + } else { Property changes on: head/games/xmoto/files/patch-src-GameInit.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/xmoto/files/patch-src-WWW.cpp =================================================================== --- head/games/xmoto/files/patch-src-WWW.cpp (nonexistent) +++ head/games/xmoto/files/patch-src-WWW.cpp (revision 377854) @@ -0,0 +1,47 @@ +--- src/WWW.cpp.orig 2015-01-10 18:11:22.000000000 +0100 ++++ src/WWW.cpp 2015-01-10 18:21:32.000000000 +0100 +@@ -206,7 +206,7 @@ void FSWeb::downloadFile(const std::stri + std::string v_www_agent = WWW_AGENT; + + /* open the file */ +- if( (v_destinationFile = fopen(v_local_file_tmp.c_str(), "wb")) == false) { ++ if( (v_destinationFile = fopen(v_local_file_tmp.c_str(), "wb")) == NULL) { + throw Exception("error : unable to open output file " + + v_local_file_tmp); + } +@@ -320,7 +320,7 @@ void FSWeb::uploadReplay(const std::stri + LogInfo(std::string("Uploading replay " + p_replayFilename).c_str()); + + /* open the file */ +- if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == false) { ++ if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == NULL) { + throw Exception("error : unable to open output file " DEFAULT_WWW_MSGFILE("UR")); + } + +@@ -478,7 +478,7 @@ void FSWeb::sendVote(const std::string& + LogInfo("Sending vote"); + + /* open the file */ +- if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == false) { ++ if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == NULL) { + throw Exception("error : unable to open output file " DEFAULT_WWW_MSGFILE("SV")); + } + +@@ -562,7 +562,7 @@ void FSWeb::sendReport(const std::string + LogInfo("Sending report"); + + /* open the file */ +- if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == false) { ++ if( (v_destinationFile = fopen(v_local_file.c_str(), "wb")) == NULL) { + throw Exception("error : unable to open output file " DEFAULT_WWW_MSGFILE("SR")); + } + +@@ -677,7 +677,7 @@ void FSWeb::uploadDbSync(const std::stri + LogInfo(std::string("Uploading dbsync " + p_dbSyncFilename + " to " + p_url_to_transfert).c_str()); + + /* open the file */ +- if( (v_destinationFile = fopen(p_answerFile.c_str(), "wb")) == false) { ++ if( (v_destinationFile = fopen(p_answerFile.c_str(), "wb")) == NULL) { + throw Exception("error : unable to open output file " + p_answerFile); + } + Property changes on: head/games/xmoto/files/patch-src-WWW.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/xmoto/files/patch-src-include-xm__hashmap.h =================================================================== --- head/games/xmoto/files/patch-src-include-xm__hashmap.h (revision 377853) +++ head/games/xmoto/files/patch-src-include-xm__hashmap.h (revision 377854) @@ -1,11 +1,28 @@ ---- src/include/xm_hashmap.h.orig 2011-10-12 00:18:17.000000000 +0400 -+++ src/include/xm_hashmap.h 2013-09-13 22:30:46.334969348 +0400 -@@ -14,7 +14,7 @@ +--- src/include/xm_hashmap.h.orig 2015-01-12 23:04:54.000000000 +0100 ++++ src/include/xm_hashmap.h 2015-01-12 23:07:53.000000000 +0100 +@@ -13,13 +13,18 @@ + #include namespace HashNamespace=std; #endif - struct hashcmp_str { +-struct hashcmp_str { - bool operator()(const char* s1, const char* s2) { -+ bool operator()(const char* s1, const char* s2) const { - if(s1 == NULL || s2 == NULL) { - return false; +- if(s1 == NULL || s2 == NULL) { +- return false; ++ ++#ifdef _LIBCPP_VERSION ++namespace __gnu_cxx { ++ template<> struct hash ++ : public unary_function ++ { ++ size_t operator()(const std::string& s) const ++ { ++ return hash()(s.c_str()); } +- return strcmp(s1, s2) == 0; +- } +-}; ++ }; ++} ++#endif // _LIBCPP_VERSION + + #endif