summaryrefslogtreecommitdiff
path: root/databases/postgresql-libpqxx3/files/patch-svn_1833
diff options
context:
space:
mode:
Diffstat (limited to 'databases/postgresql-libpqxx3/files/patch-svn_1833')
-rw-r--r--databases/postgresql-libpqxx3/files/patch-svn_183351
1 files changed, 0 insertions, 51 deletions
diff --git a/databases/postgresql-libpqxx3/files/patch-svn_1833 b/databases/postgresql-libpqxx3/files/patch-svn_1833
deleted file mode 100644
index 5c51da50f243..000000000000
--- a/databases/postgresql-libpqxx3/files/patch-svn_1833
+++ /dev/null
@@ -1,51 +0,0 @@
---- ChangeLog.orig 2013-01-17 07:25:02 UTC
-+++ ChangeLog
-@@ -1,3 +1,8 @@
-+2012-08-03 Jeroen T. Vermeulen <jtv@xs4all.nl>
-+ include/pqxx/largeobject.hxx:
-+ - Backported fix for #252: clang++ 3.2 compile error. Thanks Amy Troschinetz.
-+ src/strconv.cxx:
-+ - Backported fix for #253: clang++ 3.2 compile error. Thanks Amy Troschinetz.
- 2013-01-17 Jeroen T. Vermeulen <jtv@xs4all.nl>
- tools/splitconfig:
- - Rewrote in python.
---- include/pqxx/largeobject.hxx.orig 2013-01-17 07:25:00 UTC
-+++ include/pqxx/largeobject.hxx
-@@ -396,7 +396,7 @@ public:
- openmode mode = PGSTD::ios::in | PGSTD::ios::out,
- size_type BufSize=512) : //[t48]
- m_BufSize(BufSize),
-- m_Obj(T, O),
-+ m_Obj(T, O, mode),
- m_G(0),
- m_P(0)
- { initialize(mode); }
-@@ -406,7 +406,7 @@ public:
- openmode mode = PGSTD::ios::in | PGSTD::ios::out,
- size_type BufSize=512) : //[t48]
- m_BufSize(BufSize),
-- m_Obj(T, O),
-+ m_Obj(T, O, mode),
- m_G(0),
- m_P(0)
- { initialize(mode); }
---- src/strconv.cxx.orig 2013-01-17 07:25:01 UTC
-+++ src/strconv.cxx
-@@ -6,7 +6,7 @@
- * DESCRIPTION
- * implementation of string conversions
- *
-- * Copyright (c) 2008, Jeroen T. Vermeulen <jtv@xs4all.nl>
-+ * Copyright (c) 2008-2012, Jeroen T. Vermeulen <jtv@xs4all.nl>
- *
- * See COPYING for copyright license. If you did not receive a file called
- * COPYING with this source code, please notify the distributor of this mistake,
-@@ -230,7 +230,7 @@ template<typename T> inline void from_st
- #if defined(PQXX_HAVE_IMBUE)
- S.imbue(locale("C"));
- #endif
-- ok = (S >> result);
-+ ok = static_cast<bool>(S >> result);
- }
- break;
- }