summaryrefslogtreecommitdiff
path: root/dev-libs/libbulletml/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-libs/libbulletml/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-libs/libbulletml/files')
-rw-r--r--dev-libs/libbulletml/files/libbulletml-0.0.6-gcc43.patch31
-rw-r--r--dev-libs/libbulletml/files/libbulletml-0.0.6-gcc46.patch20
2 files changed, 0 insertions, 51 deletions
diff --git a/dev-libs/libbulletml/files/libbulletml-0.0.6-gcc43.patch b/dev-libs/libbulletml/files/libbulletml-0.0.6-gcc43.patch
deleted file mode 100644
index f7e9bfbab9b1..000000000000
--- a/dev-libs/libbulletml/files/libbulletml-0.0.6-gcc43.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- src/calc.yy
-+++ src/calc.yy
-@@ -8,6 +8,7 @@
-
- #include <cmath>
- #include <cctype>
-+#include <cstring>
-
- #include <vector>
- #include <sstream>
---- src/tinyxml/tinyxml.h
-+++ src/tinyxml/tinyxml.h
-@@ -28,6 +28,8 @@
- #include <string>
- #include <stdio.h>
- #include <assert.h>
-+#include <cstring>
-+#include <cstdlib>
-
- class TiXmlDocument;
- class TiXmlElement;
---- src/tinyxml/tinyxmlparser.cpp
-+++ src/tinyxml/tinyxmlparser.cpp
-@@ -24,6 +24,7 @@
-
- #include "tinyxml.h"
- #include <ctype.h>
-+#include <cstring>
-
- const char* TiXmlBase::SkipWhiteSpace( const char* p )
- {
diff --git a/dev-libs/libbulletml/files/libbulletml-0.0.6-gcc46.patch b/dev-libs/libbulletml/files/libbulletml-0.0.6-gcc46.patch
deleted file mode 100644
index 47e0dc411ac9..000000000000
--- a/dev-libs/libbulletml/files/libbulletml-0.0.6-gcc46.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- calc.yy.old 2011-05-18 12:26:38.701666366 +0200
-+++ calc.yy 2011-05-18 12:27:43.020672135 +0200
-@@ -17,7 +17,7 @@
- #include "formula.h"
- #include "formula-variables.h"
-
--int yyerror(char* s);
-+int yyerror(const char* s);
- int yylex();
-
- const char* yyinStr;
-@@ -149,7 +149,7 @@
- return c;
- }
-
--int yyerror(char* s) {
-+int yyerror(const char* s) {
- printf("yyerror: %s\n", s);
- return 0;
- }