Index: head/games/flightgear/files/patch-clang7-src-AIModel-AIFlightPlanCreatePushBack.cxx =================================================================== --- head/games/flightgear/files/patch-clang7-src-AIModel-AIFlightPlanCreatePushBack.cxx (nonexistent) +++ head/games/flightgear/files/patch-clang7-src-AIModel-AIFlightPlanCreatePushBack.cxx (revision 478723) @@ -0,0 +1,15 @@ +Fix build with clang 7: + +src/AIModel/AIFlightPlanCreatePushBack.cxx:96:48: error: ordered comparison between pointer and zero ('FGTaxiNode *' and 'int') + +--- src/AIModel/AIFlightPlanCreatePushBack.cxx.orig 2018-08-17 19:14:25.768512000 +0200 ++++ src/AIModel/AIFlightPlanCreatePushBack.cxx 2018-08-17 19:14:44.343865000 +0200 +@@ -93,7 +93,7 @@ + + FGGroundNetwork* groundNet = dep->groundNetwork(); + FGParking *parking = gate.parking(); +- if (parking && parking->getPushBackPoint() > 0) { ++ if (parking && parking->getPushBackPoint() != NULL) { + FGTaxiRoute route = groundNet->findShortestRoute(parking, parking->getPushBackPoint(), false); + + int size = route.size(); Property changes on: head/games/flightgear/files/patch-clang7-src-AIModel-AIFlightPlanCreatePushBack.cxx ___________________________________________________________________ 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/flightgear/files/patch-clang7-stack_scope.diff =================================================================== --- head/games/flightgear/files/patch-clang7-stack_scope.diff (nonexistent) +++ head/games/flightgear/files/patch-clang7-stack_scope.diff (revision 478723) @@ -0,0 +1,46 @@ +Fix scope of 'stack' when building with clang 7: + +error: reference to 'stack' is ambiguous + +--- src/FDM/UIUCModel/uiuc_aircraft.h.orig 2018-08-31 19:26:14.641298000 +0200 ++++ src/FDM/UIUCModel/uiuc_aircraft.h 2018-08-31 19:50:35.444961000 +0200 +@@ -150,7 +150,7 @@ + #include "uiuc_parsefile.h" + #include "uiuc_flapdata.h" + +-typedef stack :: iterator LIST; ++typedef ::stack :: iterator LIST; + + /* Add more keywords here if required*/ + enum {init_flag = 1000, geometry_flag, controlSurface_flag, controlsMixer_flag, +--- src/FDM/UIUCModel/uiuc_parsefile.h.orig 2018-08-31 19:34:45.641135000 +0200 ++++ src/FDM/UIUCModel/uiuc_parsefile.h 2018-08-31 19:35:35.903930000 +0200 +@@ -23,7 +23,7 @@ + { + private: + +- stack commands; ++ ::stack commands; + ifstream file; + void readFile(); + +@@ -37,7 +37,7 @@ + void removeComments(string& inputLine); + string getToken(string inputLine, int tokenNo); + void storeCommands(string inputLine); +- stack getCommands(); ++ ::stack getCommands(); + }; + + #endif // _PARSE_FILE_H_ +--- src/FDM/UIUCModel/uiuc_recorder.cpp.orig 2018-08-31 19:16:32.680030000 +0200 ++++ src/FDM/UIUCModel/uiuc_recorder.cpp 2018-08-31 19:16:57.872109000 +0200 +@@ -102,7 +102,7 @@ + + void uiuc_recorder( double dt ) + { +- stack command_list; ++ ::stack command_list; + string linetoken; + // static int init = 0; + static int recordStep = 0; Property changes on: head/games/flightgear/files/patch-clang7-stack_scope.diff ___________________________________________________________________ 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