summaryrefslogtreecommitdiff
path: root/textproc/xmlpp/files
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/xmlpp/files')
-rw-r--r--textproc/xmlpp/files/patch-src::xmlcommon.h11
-rw-r--r--textproc/xmlpp/files/patch-src::xmlpp.cpp15
-rw-r--r--textproc/xmlpp/files/patch-src::xmlpp.h11
-rw-r--r--textproc/xmlpp/files/patch-src::xmltokenizer.cpp11
-rw-r--r--textproc/xmlpp/files/patch-test::nodetest.cpp10
5 files changed, 0 insertions, 58 deletions
diff --git a/textproc/xmlpp/files/patch-src::xmlcommon.h b/textproc/xmlpp/files/patch-src::xmlcommon.h
deleted file mode 100644
index 0a86e5acf3ff..000000000000
--- a/textproc/xmlpp/files/patch-src::xmlcommon.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/xmlcommon.h.orig Wed Jul 23 04:10:04 2003
-+++ src/xmlcommon.h Wed Jul 23 04:12:03 2003
-@@ -20,6 +20,8 @@
-
- //! dummy define
- #define XMLPP_API
-+
-+using std::string;
-
- //! handle to a tagname string in a tagname map
- typedef int xmltagnamehandle;
diff --git a/textproc/xmlpp/files/patch-src::xmlpp.cpp b/textproc/xmlpp/files/patch-src::xmlpp.cpp
deleted file mode 100644
index 366a1d4cbbb8..000000000000
--- a/textproc/xmlpp/files/patch-src::xmlpp.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
---- ./src/xmlpp.cpp.orig Wed Jul 23 04:12:52 2003
-+++ ./src/xmlpp.cpp Wed Jul 23 04:13:52 2003
-@@ -21,6 +21,12 @@
- //debug
- #include <iostream>
-
-+using std::cout;
-+using std::cerr;
-+using std::endl;
-+using std::ifstream;
-+using std::ofstream;
-+
- namespace xmlpp {
-
- // internal use for saving
diff --git a/textproc/xmlpp/files/patch-src::xmlpp.h b/textproc/xmlpp/files/patch-src::xmlpp.h
deleted file mode 100644
index 3c6e883b76c9..000000000000
--- a/textproc/xmlpp/files/patch-src::xmlpp.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/xmlpp.h.orig Wed May 30 19:54:52 2007
-+++ src/xmlpp.h Wed May 30 19:55:11 2007
-@@ -133,7 +133,7 @@
- XMLNode & operator =(const XMLNodePtr n);
-
- //! returns or sets the node name
-- string XMLNode::name(string _name="");
-+ string name(string _name="");
- //! returns or sets the type of the node
- xmlnodetype type(xmlnodetype ntype=xml_nt_dummy);
- //! ireturns or sets cdata string
diff --git a/textproc/xmlpp/files/patch-src::xmltokenizer.cpp b/textproc/xmlpp/files/patch-src::xmltokenizer.cpp
deleted file mode 100644
index ced263bff89d..000000000000
--- a/textproc/xmlpp/files/patch-src::xmltokenizer.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/xmltokenizer.cpp.orig Wed Jul 23 04:14:53 2003
-+++ src/xmltokenizer.cpp Wed Jul 23 04:29:18 2003
-@@ -15,7 +15,7 @@
- // needed includes
- #include "xmlpp.h"
- #include "xmltokenizer.h"
--
-+#include <iostream>
-
- // namespace declaration
- namespace xmlpp {
diff --git a/textproc/xmlpp/files/patch-test::nodetest.cpp b/textproc/xmlpp/files/patch-test::nodetest.cpp
deleted file mode 100644
index 4d76d88a3f34..000000000000
--- a/textproc/xmlpp/files/patch-test::nodetest.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- test/nodetest.cpp.orig Wed Jul 23 04:18:02 2003
-+++ test/nodetest.cpp Wed Jul 23 04:19:01 2003
-@@ -5,6 +5,7 @@
- */
-
- #include <fstream>
-+#include <iostream>
- #include "xmlpp.h"
-
- using namespace xmlpp;