summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-electronics/gazebo/files')
-rw-r--r--sci-electronics/gazebo/files/boost162.patch12
-rw-r--r--sci-electronics/gazebo/files/tinyxml2.patch22
2 files changed, 0 insertions, 34 deletions
diff --git a/sci-electronics/gazebo/files/boost162.patch b/sci-electronics/gazebo/files/boost162.patch
deleted file mode 100644
index e91643fbef44..000000000000
--- a/sci-electronics/gazebo/files/boost162.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Index: gazebo-7.3.1/gazebo/rendering/Camera.cc
-===================================================================
---- gazebo-7.3.1.orig/gazebo/rendering/Camera.cc
-+++ gazebo-7.3.1/gazebo/rendering/Camera.cc
-@@ -25,6 +25,7 @@
-
- #include <boost/algorithm/string.hpp>
- #include <boost/filesystem.hpp>
-+#include <boost/format.hpp>
- #include <sdf/sdf.hh>
-
- #ifndef _WIN32
diff --git a/sci-electronics/gazebo/files/tinyxml2.patch b/sci-electronics/gazebo/files/tinyxml2.patch
deleted file mode 100644
index b829201f4905..000000000000
--- a/sci-electronics/gazebo/files/tinyxml2.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Index: gazebo-7.3.1/gazebo/util/LogPlay.cc
-===================================================================
---- gazebo-7.3.1.orig/gazebo/util/LogPlay.cc
-+++ gazebo-7.3.1/gazebo/util/LogPlay.cc
-@@ -72,7 +72,7 @@ void LogPlay::Open(const std::string &_l
-
- // Flag use to indicate if a parser failure has occurred
- bool xmlParserFail = this->dataPtr->xmlDoc.LoadFile(_logFile.c_str()) !=
-- tinyxml2::XML_NO_ERROR;
-+ tinyxml2::XML_SUCCESS;
-
- // Parse the log file
- if (xmlParserFail)
-@@ -105,7 +105,7 @@ void LogPlay::Open(const std::string &_l
-
- // Retry loading the log file.
- xmlParserFail = this->dataPtr->xmlDoc.LoadFile(_logFile.c_str()) !=
-- tinyxml2::XML_NO_ERROR;
-+ tinyxml2::XML_SUCCESS;
- }
- }
- }