summaryrefslogtreecommitdiff
path: root/databases/libpqxx
diff options
context:
space:
mode:
authorhiramatsu <hiramatsu>2013-02-16 01:46:26 +0000
committerhiramatsu <hiramatsu>2013-02-16 01:46:26 +0000
commita23908d6220491091006ee83bb8a084bc82771e8 (patch)
tree28c5ebae08afac60625b5787e68451d75f7be004 /databases/libpqxx
parent5fe329f9f8dfb003151a936dddfc9151b9bd8701 (diff)
downloadpkgsrc-a23908d6220491091006ee83bb8a084bc82771e8.tar.gz
Remove obsolute patches.
Diffstat (limited to 'databases/libpqxx')
-rw-r--r--databases/libpqxx/patches/patch-aa22
-rw-r--r--databases/libpqxx/patches/patch-include_pqxx_largeobject.hxx46
-rw-r--r--databases/libpqxx/patches/patch-src_binarystring.cxx12
-rw-r--r--databases/libpqxx/patches/patch-src_result.cxx12
-rw-r--r--databases/libpqxx/patches/patch-src_util.cxx12
5 files changed, 0 insertions, 104 deletions
diff --git a/databases/libpqxx/patches/patch-aa b/databases/libpqxx/patches/patch-aa
deleted file mode 100644
index 168195ce1b5..00000000000
--- a/databases/libpqxx/patches/patch-aa
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2012/11/16 00:41:33 joerg Exp $
-
---- configure.orig 2005-07-01 07:52:28.000000000 +0000
-+++ configure
-@@ -19403,7 +19403,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
-
-
- # Add options to compiler command line, if compiler accepts it
--function add_compiler_opts() {
-+add_compiler_opts() {
- for option in $* ; do
- SAVE_CXXFLAGS="$CXXFLAGS"
- CXXFLAGS="$CXXFLAGS $option"
-@@ -19650,7 +19650,7 @@ _ACEOF
- echo "$as_me:$LINENO: result: ${std}" >&5
- echo "${ECHO_T}${std}" >&6
- if ! test -z "${std}" ; then
-- usestd="using namespace ${std};"
-+ usestd="namespace ${std} {} using namespace ${std};"
- fi
-
-
diff --git a/databases/libpqxx/patches/patch-include_pqxx_largeobject.hxx b/databases/libpqxx/patches/patch-include_pqxx_largeobject.hxx
deleted file mode 100644
index 22edc19b5ec..00000000000
--- a/databases/libpqxx/patches/patch-include_pqxx_largeobject.hxx
+++ /dev/null
@@ -1,46 +0,0 @@
-$NetBSD: patch-include_pqxx_largeobject.hxx,v 1.1 2012/11/16 00:41:33 joerg Exp $
-
---- include/pqxx/largeobject.hxx.orig 2012-11-15 13:15:39.000000000 +0000
-+++ include/pqxx/largeobject.hxx
-@@ -382,7 +382,7 @@ protected:
- virtual int sync()
- {
- // setg() sets eback, gptr, egptr
-- setg(this->eback(), this->eback(), this->egptr());
-+ this->setg(this->eback(), this->eback(), this->egptr());
- return overflow(EoF());
- }
-
-@@ -403,7 +403,7 @@ protected:
- int_type res = 0;
-
- if (pp > pb) res = AdjustEOF(m_Obj.cwrite(pb, pp-pb));
-- setp(m_P, m_P + m_BufSize);
-+ this->setp(m_P, m_P + m_BufSize);
-
- // Write that one more character, if it's there.
- if (ch != EoF())
-@@ -419,7 +419,7 @@ protected:
- if (!this->gptr()) return EoF();
- char *const eb = this->eback();
- const int res = AdjustEOF(m_Obj.cread(this->eback(), m_BufSize));
-- setg(eb, eb, eb + ((res==EoF()) ? 0 : res));
-+ this->setg(eb, eb, eb + ((res==EoF()) ? 0 : res));
- return (!res || (res == EoF())) ? EoF() : *eb;
- }
-
-@@ -435,12 +435,12 @@ private:
- if (mode & PGSTD::ios::in)
- {
- m_G = new char_type[m_BufSize];
-- setg(m_G, m_G, m_G);
-+ this->setg(m_G, m_G, m_G);
- }
- if (mode & PGSTD::ios::out)
- {
- m_P = new char_type[m_BufSize];
-- setp(m_P, m_P + m_BufSize);
-+ this->setp(m_P, m_P + m_BufSize);
- }
- }
-
diff --git a/databases/libpqxx/patches/patch-src_binarystring.cxx b/databases/libpqxx/patches/patch-src_binarystring.cxx
deleted file mode 100644
index 36a2acb9511..00000000000
--- a/databases/libpqxx/patches/patch-src_binarystring.cxx
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-src_binarystring.cxx,v 1.1 2011/11/24 14:14:58 joerg Exp $
-
---- src/binarystring.cxx.orig 2011-11-24 00:12:09.000000000 +0000
-+++ src/binarystring.cxx
-@@ -18,6 +18,7 @@
-
- #include <new>
- #include <stdexcept>
-+#include <cstring>
-
- #include "libpq-fe.h"
-
diff --git a/databases/libpqxx/patches/patch-src_result.cxx b/databases/libpqxx/patches/patch-src_result.cxx
deleted file mode 100644
index ffd5295e968..00000000000
--- a/databases/libpqxx/patches/patch-src_result.cxx
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-src_result.cxx,v 1.1 2011/11/24 14:14:58 joerg Exp $
-
---- src/result.cxx.orig 2011-11-24 00:13:16.000000000 +0000
-+++ src/result.cxx
-@@ -18,6 +18,7 @@
- #include "pqxx/compiler.h"
-
- #include <stdexcept>
-+#include <cstdlib>
-
- #include "libpq-fe.h"
-
diff --git a/databases/libpqxx/patches/patch-src_util.cxx b/databases/libpqxx/patches/patch-src_util.cxx
deleted file mode 100644
index 9130b917c1a..00000000000
--- a/databases/libpqxx/patches/patch-src_util.cxx
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-src_util.cxx,v 1.1 2011/11/24 14:14:58 joerg Exp $
-
---- src/util.cxx.orig 2011-11-24 00:13:51.000000000 +0000
-+++ src/util.cxx
-@@ -25,6 +25,7 @@
- #endif
-
- #include <cerrno>
-+#include <cstring>
- #include <new>
- #include <sstream>
-