Tue Feb 12 04:35:24 2013 UTC ()
Update libpqxx from 2.5.5 to 4.0.1.

Changes from previous
=====================
4.0.1
 - Support for REPEATABLE READ isolation level.
 - Build fix for OS X.
 - Build fixes for clang++ 3.2.
 - Build fixes for clang++ 3.0.
 - Build fix for MinGW.
 - Build fix for BSD (and possibly other grep flavours).
 - Compatibility typedefs: pqxx::result::tuple & pqxx::result::field.
 - Supports C++11.
 - Fixed failure to detect some integer overflows during conversion.
4.0
 - API change: noticers are gone!  Use errorhandlers to capture error output.
 - API change: tablereaders and tablewriters are gone; they weren't safe.
 - API change: prepared statements are now weakly-typed, and much simpler.
 - API change: fields and tuples are now stand-alone classes in ::pqxx.
 - API change: thread-safety field have_strerror_r is now have_safe_strerror.
 - API change: notify_listener has been replaced with notification_receiver.
 - notification_receiver takes a payload parameter.
 - Easier Visual C++ setup.
 - Absolutely requires a libpq version with PQescapeStringConn.
 - Absolutely requires libpq 8.0 or better.
 - Changes for C++0x.
 - Supports clang++.
 - Visual C++ makefiles now support new-style unit tests.
 - Sample headers for more recent Visual Studio versions.
 - Fixes binary-data escaping problems with postgres 9.0.
 - Fixes problems with binary-string handling and escaping.
 - Fixes compatibility problems between 9.x libpq and 7.x backend.
 - quote_name to escape SQL identifiers for use in queries.
 - syntax_error reports error's approximate location in the query.
 - On Windows, now uses ws2_32 instead of wsock32.
 - Various Windows build fixes.
 - Updated for gcc 4.6.0.
 - configure script supports --enable-documentation/--disable-documentation.
 - Streamlined test/release toolchain.
3.1
 - Shared libraries are now versioned by ABI: 3.1 instead of 3.1.0 etc.
 - Threading behaviour is now documented, and can be queried.
 - Version information available at compile time.
 - Supports parameterized statements.
 - Result tuples now support slicing.
 - Configure with --with-tr1=boost to use BOOST shared_ptr.
 - String conversion now has its own header file.
 - Supports read-only transactions.
 - Fixed breakage with Solaris "make".
 - Uses shared_ptr if available.
 - binarystring::str() is no longer cached; no longer returns reference.
 - Fixed problems in Visual C++ Makefile for test suite.
 - Fixed problems with RPM packaging.
 - Fixed build problem on RedHat/CentOS 5.
 - Lets you check whether a prepared statement has been defined.
 - "Varargs" prepared statements.
 - Unnamed prepared statements now supported.
 - Results have iterator as well as const_iterator.
 - Rewrite of robusttransaction logic; may actually do its job now.
 - Connections support async query cancel from signal handler or thread.
 - More documentation for performance features.
3.0
 - Website is now at http://pqxx.org/ (no redirects)
 - Completely replaced cursor classes
 - More helpful error messages on failed connections
 - More detailed hierarchy of constraint-violation exception classes
 - trigger is now called notify_listener, trigger header is now notify-listen
 - New mixin base class pqxx_exception distinguishes libpqxx exception types
 - Quoting is back!  transaction_base::quote() & connection_base::quote()
 - Several build & documentation problems with Visual C++ fixed
 - Compile fixes for gcc 4.2, 4.3
 - Compile fixes for Sun Studio Express 5.9
 - Uses strlcpy() where available, instead of strncpy()
 - Keeps better track of applicable text encodings
 - Fixed bug with prepared statement parameters in separate C++ statements
 - robusttransaction now works for multiple users
 - Pipeline lets you cancel ongoing queries, e.g. because they run for too long
 - Fixed broken escaping of binary values in tablewriter
 - Floating-point types now represented with full precision
 - Proper unit tests for new functionality
 - New traits-based system for adding data types
 - Floating-point infinities now supported
 - Flushing/completing a pipeline now frees up the transaction for other use
 - Completely reworked test suite, builds and runs much faster
 - tablewriter supports writing of raw lines
2.6.9
 - Removed old 1.x API (that means all identifiers with capital letters!)
 - Tested with all current libpq versions and oldest/newest supported backends
 - No longer have old OnCommit()/OnAbort()/OnDoubt() callbacks in transactor!
 - Fixes failure when closing cursors with upper-case letters in their names
 - Fixes bug when adding triggers to connections that aren't open yet
 - Fixes bug when removing triggers
 - Fixes small memory leak when preparing statements
 - Fixes many problems with older backends
 - Fixes bug in result::swap(): protocol versions were not swapped
 - Some errors went undetected when using certain libpq versions
 - Fixes prepared statements on new libpq versions talking to old backends
 - Can estimate server version if libpq does not know how to obtain it
 - Greatly reduced memory usage while escaping strings
 - With Visual C++, creates lib/ directory if not already present
 - Useful error messages when preparing statements
 - Allows prepared statements to be registered explicitly
 - Support for "long long" types; enable with PQXX_ALLOW_LONG_LONG macro
 - Compilation errors for older libpq versions fixed
 - Some new small utility classes for disabling notice processing etc.
 - Result sets remember the queries that yielded them
 - New test script, pqxx-fulltest, tests against all current postgres versions
 - Connections can simulate failure
 - Adds password encryption function
2.6.8
 - Fixes bug: binary parameters to prepared statements truncated at nul bytes
 - New, more specific exception types to distinguish errors from server
 - Resolved serious problems with generated reference documentation
 - Automatically detect Windows socket library with MinGW
 - Windows "make" fixed to run from main directory, not win32
 - Fixes "mktemp" problems on some BSD-based platforms
 - pqxx-config is deprecated; use pkg-config instead
 - On GNU/Linux, uses poll() instead of select() to avoid file descriptor limit
 - Will provide server and protocol version information where available
 - New cursor class, absolute_cursor
2.6.7
 - New escape functions for binary data: transaction_base::esc_raw()
 - Improved detection of socket libraries, especially for MinGW
 - Works around bug in some versions of GNU grep 2.5.1
 - Fixes problem with configuration headers
 - Fixes PQprepare() detection
 - Fixes incomplete Visual C++ Makefile
 - Fixes compile error in workaround for older libpq versions
 - Removes "rpath" link option
2.6.6
 - New, encoding-safe string-escaping functions
 - Upper-case letters now allowed in prepared-statement names
 - Fixes crash in test005
 - More Visual C++ improvements
 - Removed collaboration diagrams from reference docs
 - New templating system for generating Windows Makefiles etc.
2.6.5
 - Visual C++ users: copy win32/common-sample to win32/common before editing it
 - Should fix problems finding socket library on MinGW
 - Even more work on Visual C++ problems
 - Updated documentation for Visual C++ users
 - Fixed bug in prepared statements (mostly visible on Visual C++)
 - Nested transactions work harder to detect backend support
2.6.4
 - Massively improved compatibility with Windows and Visual C++
 - Fixed late initialization of "direct" connection state
 - Fixed problem with initialization of connection capabilities
 - Fixed configuration bug for libpq in nonstandard locations
 - Sample configuration header for libpq found in PostgreSQL 8.1
2.6.3
 - Radical rework of prepared statements; INCOMPATIBLE INTERFACE CHANGE!
 - Dropped support for g++ 2.95
 - Emulate prepared statements support on old libpq or old backend
 - Bug fix: missing tutorial (release script now tests for this)
 - Automatically links in socket library on Windows or Solaris, if needed
 - Bug fix: check for std namespace didn't work
 - Fixes for Cygwin/MSYS/MinGW
2.6.2
 - Bug fix: connection state was not set up properly in some common cases
 - Bug fix: headers were installed in "include" instead of "include/pqxx"
 - Bug fix: sqlesc(string) broke with multibyte or multiple encodings
 - namedclass is now used as a virtual base; affects all subclass constructors
 - Initial implementation of subtransactions
 - Detect more connection capabilities
 - Standard library namespace can be set from configure script's command line
 - Completely reworked connection hierarchy, with separate policy objects
 - Clients can now define their own connection policies
 - Paved the way for client-defined thread synchronization
 - Now lives at http://thaiopensource.org/development/libpqxx/
2.6.1
 - Hugely improved recognition of different strerror_r() versions
 - Resolved link problems with gcc 4.0 and shared library
2.6.0
 - New macro PQXX_SHARED defines whether to use/build libpqxx as shared library
 - Robusttransaction compatible with PostgreSQL 8.1
 - Infrastructure for querying connection/backend capabilities at runtime
 - Greatly improved cursor support
 - Connection reactivation can be inhibited explicitly
 - Tries even harder to make sense of conflicting strerror_r() definitions
 - Detects connection failures that libpq glosses over
 - Reference documentation grouped into more coherent sections
 - Assumes strerror() is threadsafe on systems that have no strerror_r()
 - Now allows connection's socket number to be queried
 - New internal_error class for libpqxx-internal errors
 - With Visual C++, doesn't redefine NOMINMAX if it is defined already
 - Several compatibility improvements for Visual C++
 - Fixes and workarounds for HP-UX and HP aCC compiler
 - Phased old cursor interface out of test suite; tests ported to new interface
 - Added documentation on thread safety
 - New thread safety model
 - Large objects have functions to tell current position
 - Minor updates to tutorial (somebody pay me and I'll do more :)
 - No longer needs libpq-fs.h header
 - Meaningful error messages for ambiguous string conversions fixed
2.5.6
 - Support null parameters to prepared statements (use C-style char pointers)


(hiramatsu)
diff -r1.25 -r1.26 pkgsrc/databases/libpqxx/Makefile
diff -r1.5 -r1.6 pkgsrc/databases/libpqxx/Makefile.common
diff -r1.4 -r1.5 pkgsrc/databases/libpqxx/PLIST
diff -r1.7 -r1.8 pkgsrc/databases/libpqxx/distinfo
diff -r1.4 -r1.5 pkgsrc/databases/libpqxx-doc/Makefile
diff -r1.5 -r1.6 pkgsrc/databases/libpqxx-doc/PLIST
diff -r1.2 -r1.3 pkgsrc/databases/libpqxx/patches/patch-ab
diff -r1.1 -r1.2 pkgsrc/databases/libpqxx/patches/patch-src_largeobject.cxx

cvs diff -r1.25 -r1.26 pkgsrc/databases/libpqxx/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/libpqxx/Makefile 2012/10/02 21:25:21 1.25
+++ pkgsrc/databases/libpqxx/Makefile 2013/02/12 04:35:24 1.26
@@ -1,24 +1,27 @@ @@ -1,24 +1,27 @@
1# $NetBSD: Makefile,v 1.25 2012/10/02 21:25:21 asau Exp $ 1# $NetBSD: Makefile,v 1.26 2013/02/12 04:35:24 hiramatsu Exp $
2# 2#
3 3
4.include "../../databases/libpqxx/Makefile.common" 4.include "../../databases/libpqxx/Makefile.common"
5 5
6COMMENT= C++ interface to postgresql-lib 6COMMENT= C++ interface to postgresql-lib
7PKGREVISION= 4 
8 7
9NOT_FOR_PLATFORM= NetBSD-*-pc532 8NOT_FOR_PLATFORM= NetBSD-*-pc532
10 9
11USE_LANGUAGES= c c++ 10USE_LANGUAGES= c c++
12USE_LIBTOOL= yes 11USE_LIBTOOL= yes
13PKGCONFIG_OVERRIDE+= libpqxx.pc.in 12PKGCONFIG_OVERRIDE+= libpqxx.pc.in
14GNU_CONFIGURE= yes 13GNU_CONFIGURE= yes
15 14
16.include "../../mk/bsd.prefs.mk" 15.include "../../mk/bsd.prefs.mk"
17 16
18.if ${OPSYS} == "NetBSD" 17.if ${OPSYS} == "NetBSD"
19# No strerror_r 18# No strerror_r
20CONFIGURE_ARGS+= --disable-thread-safety 19CONFIGURE_ARGS+= --disable-thread-safety
21.endif 20.endif
22 21
 22PYTHON_FOR_BUILD_ONLY= yes
 23REPLACE_PYTHON+= tools/splitconfig
 24
 25.include "../../lang/python/application.mk"
23.include "../../mk/pgsql.buildlink3.mk" 26.include "../../mk/pgsql.buildlink3.mk"
24.include "../../mk/bsd.pkg.mk" 27.include "../../mk/bsd.pkg.mk"

cvs diff -r1.5 -r1.6 pkgsrc/databases/libpqxx/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/libpqxx/Attic/Makefile.common 2007/02/22 19:26:18 1.5
+++ pkgsrc/databases/libpqxx/Attic/Makefile.common 2013/02/12 04:35:24 1.6
@@ -1,13 +1,16 @@ @@ -1,13 +1,16 @@
1# $NetBSD: Makefile.common,v 1.5 2007/02/22 19:26:18 wiz Exp $ 1# $NetBSD: Makefile.common,v 1.6 2013/02/12 04:35:24 hiramatsu Exp $
2# 
3 2
4LIBPQXX_VERSION= 2.5.5 3# used by databases/libpqxx/Makefile
 4# used by databases/libpqxx-doc/Makefile
 5
 6LIBPQXX_VERSION= 4.0.1
5DISTNAME= libpqxx-${LIBPQXX_VERSION} 7DISTNAME= libpqxx-${LIBPQXX_VERSION}
6CATEGORIES= databases 8CATEGORIES= databases
7MASTER_SITES= ftp://gborg.postgresql.org/pub/libpqxx/stable/ 9MASTER_SITES= http://pqxx.org/download/software/libpqxx/
8 10
9MAINTAINER= is@NetBSD.org 11MAINTAINER= is@NetBSD.org
10HOMEPAGE= http://thaiopensource.org/development/ 12HOMEPAGE= http://pqxx.org/development/libpqxx/
 13LICENSE= modified-bsd
11 14
12DISTINFO_FILE= ${.CURDIR}/../../databases/libpqxx/distinfo 15DISTINFO_FILE= ${.CURDIR}/../../databases/libpqxx/distinfo
13PATCHDIR= ${.CURDIR}/../../databases/libpqxx/patches 16PATCHDIR= ${.CURDIR}/../../databases/libpqxx/patches

cvs diff -r1.4 -r1.5 pkgsrc/databases/libpqxx/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/libpqxx/PLIST 2009/06/14 17:43:18 1.4
+++ pkgsrc/databases/libpqxx/PLIST 2013/02/12 04:35:24 1.5
@@ -1,70 +1,96 @@ @@ -1,70 +1,96 @@
1@comment $NetBSD: PLIST,v 1.4 2009/06/14 17:43:18 joerg Exp $ 1@comment $NetBSD: PLIST,v 1.5 2013/02/12 04:35:24 hiramatsu Exp $
2bin/pqxx-config 2bin/pqxx-config
3include/pqxx/all.h 3include/pqxx/basic_connection
 4include/pqxx/basic_connection.hxx
4include/pqxx/binarystring 5include/pqxx/binarystring
5include/pqxx/binarystring.hxx 6include/pqxx/binarystring.hxx
6include/pqxx/cachedresult.h 7include/pqxx/compiler-internal-post.hxx
 8include/pqxx/compiler-internal-pre.hxx
 9include/pqxx/compiler-public.hxx
7include/pqxx/config-public-compiler.h 10include/pqxx/config-public-compiler.h
8include/pqxx/connection 11include/pqxx/connection
9include/pqxx/connection.h 
10include/pqxx/connection.hxx 12include/pqxx/connection.hxx
11include/pqxx/connection_base 13include/pqxx/connection_base
12include/pqxx/connection_base.h 
13include/pqxx/connection_base.hxx 14include/pqxx/connection_base.hxx
14include/pqxx/connectionitf.h 15include/pqxx/connectionpolicy
 16include/pqxx/connectionpolicy.hxx
15include/pqxx/cursor 17include/pqxx/cursor
16include/pqxx/cursor.h 
17include/pqxx/cursor.hxx 18include/pqxx/cursor.hxx
18include/pqxx/dbtransaction 19include/pqxx/dbtransaction
19include/pqxx/dbtransaction.h 
20include/pqxx/dbtransaction.hxx 20include/pqxx/dbtransaction.hxx
 21include/pqxx/errorhandler
 22include/pqxx/errorhandler.hxx
21include/pqxx/except 23include/pqxx/except
22include/pqxx/except.h 
23include/pqxx/except.hxx 24include/pqxx/except.hxx
 25include/pqxx/field
 26include/pqxx/field.hxx
 27include/pqxx/internal/callgate.hxx
 28include/pqxx/internal/gates/connection-dbtransaction.hxx
 29include/pqxx/internal/gates/connection-errorhandler.hxx
 30include/pqxx/internal/gates/connection-largeobject.hxx
 31include/pqxx/internal/gates/connection-notification_receiver.hxx
 32include/pqxx/internal/gates/connection-parameterized_invocation.hxx
 33include/pqxx/internal/gates/connection-pipeline.hxx
 34include/pqxx/internal/gates/connection-prepare-invocation.hxx
 35include/pqxx/internal/gates/connection-reactivation_avoidance_exemption.hxx
 36include/pqxx/internal/gates/connection-sql_cursor.hxx
 37include/pqxx/internal/gates/connection-transaction.hxx
 38include/pqxx/internal/gates/errorhandler-connection.hxx
 39include/pqxx/internal/gates/icursor_iterator-icursorstream.hxx
 40include/pqxx/internal/gates/icursorstream-icursor_iterator.hxx
 41include/pqxx/internal/gates/result-connection.hxx
 42include/pqxx/internal/gates/result-creation.hxx
 43include/pqxx/internal/gates/result-sql_cursor.hxx
 44include/pqxx/internal/gates/transaction-subtransaction.hxx
 45include/pqxx/internal/gates/transaction-tablereader.hxx
 46include/pqxx/internal/gates/transaction-tablewriter.hxx
 47include/pqxx/internal/gates/transaction-transactionfocus.hxx
 48include/pqxx/internal/libpq-forward.hxx
 49include/pqxx/internal/result_data.hxx
 50include/pqxx/internal/statement_parameters.hxx
24include/pqxx/isolation 51include/pqxx/isolation
25include/pqxx/isolation.h 
26include/pqxx/isolation.hxx 52include/pqxx/isolation.hxx
27include/pqxx/largeobject 53include/pqxx/largeobject
28include/pqxx/largeobject.h 
29include/pqxx/largeobject.hxx 54include/pqxx/largeobject.hxx
30include/pqxx/libcompiler.h 
31include/pqxx/libpq-forward.hxx 
32include/pqxx/nontransaction 55include/pqxx/nontransaction
33include/pqxx/nontransaction.h 
34include/pqxx/nontransaction.hxx 56include/pqxx/nontransaction.hxx
 57include/pqxx/notification
 58include/pqxx/notification.hxx
 59include/pqxx/notify-listen
 60include/pqxx/notify-listen.hxx
 61include/pqxx/performance.hxx
35include/pqxx/pipeline 62include/pqxx/pipeline
36include/pqxx/pipeline.hxx 63include/pqxx/pipeline.hxx
37include/pqxx/pqxx 64include/pqxx/pqxx
 65include/pqxx/prepared_statement
 66include/pqxx/prepared_statement.hxx
38include/pqxx/result 67include/pqxx/result
39include/pqxx/result.h 
40include/pqxx/result.hxx 68include/pqxx/result.hxx
41include/pqxx/robusttransaction 69include/pqxx/robusttransaction
42include/pqxx/robusttransaction.h 
43include/pqxx/robusttransaction.hxx 70include/pqxx/robusttransaction.hxx
 71include/pqxx/strconv
 72include/pqxx/strconv.hxx
 73include/pqxx/subtransaction
 74include/pqxx/subtransaction.hxx
44include/pqxx/tablereader 75include/pqxx/tablereader
45include/pqxx/tablereader.h 
46include/pqxx/tablereader.hxx 76include/pqxx/tablereader.hxx
47include/pqxx/tablestream 77include/pqxx/tablestream
48include/pqxx/tablestream.h 
49include/pqxx/tablestream.hxx 78include/pqxx/tablestream.hxx
50include/pqxx/tablewriter 79include/pqxx/tablewriter
51include/pqxx/tablewriter.h 
52include/pqxx/tablewriter.hxx 80include/pqxx/tablewriter.hxx
53include/pqxx/transaction 81include/pqxx/transaction
54include/pqxx/transaction.h 
55include/pqxx/transaction.hxx 82include/pqxx/transaction.hxx
56include/pqxx/transaction_base 83include/pqxx/transaction_base
57include/pqxx/transaction_base.h 
58include/pqxx/transaction_base.hxx 84include/pqxx/transaction_base.hxx
59include/pqxx/transactionitf.h 
60include/pqxx/transactor 85include/pqxx/transactor
61include/pqxx/transactor.h 
62include/pqxx/transactor.hxx 86include/pqxx/transactor.hxx
63include/pqxx/trigger 87include/pqxx/trigger
64include/pqxx/trigger.h 
65include/pqxx/trigger.hxx 88include/pqxx/trigger.hxx
 89include/pqxx/tuple
 90include/pqxx/tuple.hxx
66include/pqxx/util 91include/pqxx/util
67include/pqxx/util.h 
68include/pqxx/util.hxx 92include/pqxx/util.hxx
 93include/pqxx/version
 94include/pqxx/version.hxx
69lib/libpqxx.la 95lib/libpqxx.la
70lib/pkgconfig/libpqxx.pc 96lib/pkgconfig/libpqxx.pc

cvs diff -r1.7 -r1.8 pkgsrc/databases/libpqxx/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/libpqxx/distinfo 2012/11/16 00:41:33 1.7
+++ pkgsrc/databases/libpqxx/distinfo 2013/02/12 04:35:24 1.8
@@ -1,12 +1,7 @@ @@ -1,12 +1,7 @@
1$NetBSD: distinfo,v 1.7 2012/11/16 00:41:33 joerg Exp $ 1$NetBSD: distinfo,v 1.8 2013/02/12 04:35:24 hiramatsu Exp $
2 2
3SHA1 (libpqxx-2.5.5.tar.gz) = e7ee3d9ea5acfccf2779bf39fe29d0228bd6479a 3SHA1 (libpqxx-4.0.1.tar.gz) = 4748835bd1a90fb34e6e577788006a416c2acb60
4RMD160 (libpqxx-2.5.5.tar.gz) = 28d05558982f0c1b2df9eac3ca01a47b5bdee832 4RMD160 (libpqxx-4.0.1.tar.gz) = 7fae516d6aa59dac0d2403c6a979c5c3d9fb3fce
5Size (libpqxx-2.5.5.tar.gz) = 1566887 bytes 5Size (libpqxx-4.0.1.tar.gz) = 1582532 bytes
6SHA1 (patch-aa) = 86858f7c14317d44c1242e8010e8d16a2ff40734 6SHA1 (patch-ab) = ec82ac6e1a6cd3fbb3b9e0e4f4296b73b4efde5e
7SHA1 (patch-ab) = 22dbd7aa70f082cf20fd99843a5a2811505722f8 7SHA1 (patch-src_largeobject.cxx) = f34e2a7d7e20bb155f8629327243d48021757a40
8SHA1 (patch-include_pqxx_largeobject.hxx) = a070410b8ed7e714a91b9b2d33dabb2396b283e7 
9SHA1 (patch-src_binarystring.cxx) = 98b46c3bf806fd0689126729a211c71b132969bd 
10SHA1 (patch-src_largeobject.cxx) = d293ece542785cdcca20eda1722392cd2d8bacc8 
11SHA1 (patch-src_result.cxx) = 698f74c603d8c3ffb066f16755ee8de6da6fae39 
12SHA1 (patch-src_util.cxx) = 70a78a8db2e78842b6aa5cb4d23eb73f4bd87c55 

cvs diff -r1.4 -r1.5 pkgsrc/databases/libpqxx-doc/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/libpqxx-doc/Attic/Makefile 2012/10/02 21:25:21 1.4
+++ pkgsrc/databases/libpqxx-doc/Attic/Makefile 2013/02/12 04:35:24 1.5
@@ -1,18 +1,17 @@ @@ -1,18 +1,17 @@
1# $NetBSD: Makefile,v 1.4 2012/10/02 21:25:21 asau Exp $ 1# $NetBSD: Makefile,v 1.5 2013/02/12 04:35:24 hiramatsu Exp $
2# 2#
3 3
4PKGNAME= libpqxx-doc-${LIBPQXX_VERSION} 4PKGNAME= libpqxx-doc-${LIBPQXX_VERSION}
5PKGREVISION= 1 
6 5
7.include "../../databases/libpqxx/Makefile.common" 6.include "../../databases/libpqxx/Makefile.common"
8 7
9COMMENT= Documentation for libpqxx 8COMMENT= Documentation for libpqxx
10 9
11NO_CONFIGURE= yes 10NO_CONFIGURE= yes
12NO_BUILD= yes 11NO_BUILD= yes
13 12
14PQXXDOCSRC= ${WRKSRC}/doc/html 13PQXXDOCSRC= ${WRKSRC}/doc/html
15PQXXDOC= ${PREFIX}/share/doc/libpqxx 14PQXXDOC= ${PREFIX}/share/doc/libpqxx
16INSTALLATION_DIRS+= ${PQXXDOC}/Reference ${PQXXDOC}/Tutorial 15INSTALLATION_DIRS+= ${PQXXDOC}/Reference ${PQXXDOC}/Tutorial
17INSTALLATION_DIRS+= share/examples/libpqxx 16INSTALLATION_DIRS+= share/examples/libpqxx
18 17

cvs diff -r1.5 -r1.6 pkgsrc/databases/libpqxx-doc/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/libpqxx-doc/Attic/PLIST 2009/06/14 17:43:18 1.5
+++ pkgsrc/databases/libpqxx-doc/Attic/PLIST 2013/02/12 04:35:24 1.6
@@ -1,173 +1,300 @@ @@ -1,173 +1,300 @@
1@comment $NetBSD: PLIST,v 1.5 2009/06/14 17:43:18 joerg Exp $ 1@comment $NetBSD: PLIST,v 1.6 2013/02/12 04:35:24 hiramatsu Exp $
2share/doc/libpqxx/Reference/all_8h-source.html 2share/doc/libpqxx/Reference/a00001.html
3share/doc/libpqxx/Reference/all_8h.html 3share/doc/libpqxx/Reference/a00002.html
 4share/doc/libpqxx/Reference/a00003.html
 5share/doc/libpqxx/Reference/a00004.html
 6share/doc/libpqxx/Reference/a00005.html
 7share/doc/libpqxx/Reference/a00006.html
 8share/doc/libpqxx/Reference/a00007.html
 9share/doc/libpqxx/Reference/a00008.html
 10share/doc/libpqxx/Reference/a00009.html
 11share/doc/libpqxx/Reference/a00010.html
 12share/doc/libpqxx/Reference/a00011.html
 13share/doc/libpqxx/Reference/a00012.html
 14share/doc/libpqxx/Reference/a00013.html
 15share/doc/libpqxx/Reference/a00014.html
 16share/doc/libpqxx/Reference/a00015.html
 17share/doc/libpqxx/Reference/a00016.html
 18share/doc/libpqxx/Reference/a00017.html
 19share/doc/libpqxx/Reference/a00018.html
 20share/doc/libpqxx/Reference/a00019.html
 21share/doc/libpqxx/Reference/a00020.html
 22share/doc/libpqxx/Reference/a00021.html
 23share/doc/libpqxx/Reference/a00022.html
 24share/doc/libpqxx/Reference/a00023.html
 25share/doc/libpqxx/Reference/a00024.html
 26share/doc/libpqxx/Reference/a00025.html
 27share/doc/libpqxx/Reference/a00026.html
 28share/doc/libpqxx/Reference/a00027.html
 29share/doc/libpqxx/Reference/a00028.html
 30share/doc/libpqxx/Reference/a00029.html
 31share/doc/libpqxx/Reference/a00030.html
 32share/doc/libpqxx/Reference/a00031.html
 33share/doc/libpqxx/Reference/a00032.html
 34share/doc/libpqxx/Reference/a00033.html
 35share/doc/libpqxx/Reference/a00034.html
 36share/doc/libpqxx/Reference/a00035.html
 37share/doc/libpqxx/Reference/a00036.html
 38share/doc/libpqxx/Reference/a00037.html
 39share/doc/libpqxx/Reference/a00038.html
 40share/doc/libpqxx/Reference/a00039.html
 41share/doc/libpqxx/Reference/a00040.html
 42share/doc/libpqxx/Reference/a00041.html
 43share/doc/libpqxx/Reference/a00042.html
 44share/doc/libpqxx/Reference/a00043.html
 45share/doc/libpqxx/Reference/a00044.html
 46share/doc/libpqxx/Reference/a00045.html
 47share/doc/libpqxx/Reference/a00046.html
 48share/doc/libpqxx/Reference/a00047.html
 49share/doc/libpqxx/Reference/a00048.html
 50share/doc/libpqxx/Reference/a00049.html
 51share/doc/libpqxx/Reference/a00050.html
 52share/doc/libpqxx/Reference/a00051.html
 53share/doc/libpqxx/Reference/a00052.html
 54share/doc/libpqxx/Reference/a00053.html
 55share/doc/libpqxx/Reference/a00054.html
 56share/doc/libpqxx/Reference/a00055.html
 57share/doc/libpqxx/Reference/a00056.html
 58share/doc/libpqxx/Reference/a00057.html
 59share/doc/libpqxx/Reference/a00058.html
 60share/doc/libpqxx/Reference/a00059.html
 61share/doc/libpqxx/Reference/a00060.html
 62share/doc/libpqxx/Reference/a00061.html
 63share/doc/libpqxx/Reference/a00062.html
 64share/doc/libpqxx/Reference/a00063.html
 65share/doc/libpqxx/Reference/a00064.html
 66share/doc/libpqxx/Reference/a00065.html
 67share/doc/libpqxx/Reference/a00066.html
 68share/doc/libpqxx/Reference/a00067.html
 69share/doc/libpqxx/Reference/a00068.html
 70share/doc/libpqxx/Reference/a00069.html
 71share/doc/libpqxx/Reference/a00070.html
 72share/doc/libpqxx/Reference/a00071.html
 73share/doc/libpqxx/Reference/a00072.html
 74share/doc/libpqxx/Reference/a00073.html
 75share/doc/libpqxx/Reference/a00074.html
 76share/doc/libpqxx/Reference/a00075.html
 77share/doc/libpqxx/Reference/a00076.html
 78share/doc/libpqxx/Reference/a00077.html
 79share/doc/libpqxx/Reference/a00078.html
 80share/doc/libpqxx/Reference/a00079.html
 81share/doc/libpqxx/Reference/a00080.html
 82share/doc/libpqxx/Reference/a00081.html
 83share/doc/libpqxx/Reference/a00082.html
 84share/doc/libpqxx/Reference/a00083.html
 85share/doc/libpqxx/Reference/a00084.html
 86share/doc/libpqxx/Reference/a00085.html
 87share/doc/libpqxx/Reference/a00086.html
 88share/doc/libpqxx/Reference/a00087.html
 89share/doc/libpqxx/Reference/a00088.html
 90share/doc/libpqxx/Reference/a00089.html
 91share/doc/libpqxx/Reference/a00090.html
 92share/doc/libpqxx/Reference/a00091.html
 93share/doc/libpqxx/Reference/a00092.html
 94share/doc/libpqxx/Reference/a00093.html
 95share/doc/libpqxx/Reference/a00094.html
 96share/doc/libpqxx/Reference/a00095.html
 97share/doc/libpqxx/Reference/a00096.html
 98share/doc/libpqxx/Reference/a00097.html
 99share/doc/libpqxx/Reference/a00098.html
 100share/doc/libpqxx/Reference/a00099.html
 101share/doc/libpqxx/Reference/a00100.html
 102share/doc/libpqxx/Reference/a00101.html
 103share/doc/libpqxx/Reference/a00102.html
 104share/doc/libpqxx/Reference/a00103.html
 105share/doc/libpqxx/Reference/a00104.html
 106share/doc/libpqxx/Reference/a00105.html
 107share/doc/libpqxx/Reference/a00106.html
 108share/doc/libpqxx/Reference/a00107.html
 109share/doc/libpqxx/Reference/a00108.html
 110share/doc/libpqxx/Reference/a00109.html
 111share/doc/libpqxx/Reference/a00110.html
 112share/doc/libpqxx/Reference/a00111.html
 113share/doc/libpqxx/Reference/a00112.html
 114share/doc/libpqxx/Reference/a00113.html
 115share/doc/libpqxx/Reference/a00114_source.html
 116share/doc/libpqxx/Reference/a00116_source.html
 117share/doc/libpqxx/Reference/a00117_source.html
 118share/doc/libpqxx/Reference/a00118_source.html
 119share/doc/libpqxx/Reference/a00119_source.html
 120share/doc/libpqxx/Reference/a00120_source.html
 121share/doc/libpqxx/Reference/a00121_source.html
 122share/doc/libpqxx/Reference/a00122_source.html
 123share/doc/libpqxx/Reference/a00123_source.html
 124share/doc/libpqxx/Reference/a00124_source.html
 125share/doc/libpqxx/Reference/a00125_source.html
 126share/doc/libpqxx/Reference/a00127_source.html
 127share/doc/libpqxx/Reference/a00129_source.html
 128share/doc/libpqxx/Reference/a00130_source.html
 129share/doc/libpqxx/Reference/a00132_source.html
 130share/doc/libpqxx/Reference/a00134_source.html
 131share/doc/libpqxx/Reference/a00136_source.html
 132share/doc/libpqxx/Reference/a00138_source.html
 133share/doc/libpqxx/Reference/a00140_source.html
 134share/doc/libpqxx/Reference/a00141_source.html
 135share/doc/libpqxx/Reference/a00143_source.html
 136share/doc/libpqxx/Reference/a00145_source.html
 137share/doc/libpqxx/Reference/a00147_source.html
 138share/doc/libpqxx/Reference/a00149_source.html
 139share/doc/libpqxx/Reference/a00150_source.html
 140share/doc/libpqxx/Reference/a00152_source.html
 141share/doc/libpqxx/Reference/a00154_source.html
 142share/doc/libpqxx/Reference/a00156_source.html
 143share/doc/libpqxx/Reference/a00158_source.html
 144share/doc/libpqxx/Reference/a00161_source.html
 145share/doc/libpqxx/Reference/a00163_source.html
 146share/doc/libpqxx/Reference/a00165_source.html
 147share/doc/libpqxx/Reference/a00167_source.html
 148share/doc/libpqxx/Reference/a00169_source.html
 149share/doc/libpqxx/Reference/a00171_source.html
 150share/doc/libpqxx/Reference/a00173_source.html
 151share/doc/libpqxx/Reference/a00174_source.html
 152share/doc/libpqxx/Reference/a00175_source.html
 153share/doc/libpqxx/Reference/a00176.html
 154share/doc/libpqxx/Reference/a00178_source.html
 155share/doc/libpqxx/Reference/a00180_source.html
 156share/doc/libpqxx/Reference/a00181_source.html
 157share/doc/libpqxx/Reference/a00194.html
 158share/doc/libpqxx/Reference/a00195.html
 159share/doc/libpqxx/Reference/a00196.html
 160share/doc/libpqxx/Reference/a00197.html
 161share/doc/libpqxx/Reference/a00199.html
 162share/doc/libpqxx/Reference/a00200.html
 163share/doc/libpqxx/Reference/a00201.html
 164share/doc/libpqxx/Reference/a00202.html
 165share/doc/libpqxx/Reference/a00203.html
 166share/doc/libpqxx/Reference/a00204.html
 167share/doc/libpqxx/Reference/a00205.html
 168share/doc/libpqxx/Reference/a00206.html
 169share/doc/libpqxx/Reference/a00207.html
 170share/doc/libpqxx/Reference/a00208.html
 171share/doc/libpqxx/Reference/a00209.html
 172share/doc/libpqxx/Reference/a00210.html
 173share/doc/libpqxx/Reference/a00212.html
 174share/doc/libpqxx/Reference/a00213.html
 175share/doc/libpqxx/Reference/a00214.html
 176share/doc/libpqxx/Reference/a00215.html
 177share/doc/libpqxx/Reference/a00216.html
 178share/doc/libpqxx/Reference/a00217.html
 179share/doc/libpqxx/Reference/a00218.html
 180share/doc/libpqxx/Reference/a00219.html
 181share/doc/libpqxx/Reference/a00220.html
 182share/doc/libpqxx/Reference/a00221.html
 183share/doc/libpqxx/Reference/a00222.html
 184share/doc/libpqxx/Reference/a00223.html
 185share/doc/libpqxx/Reference/a00224.html
 186share/doc/libpqxx/Reference/a00225.html
 187share/doc/libpqxx/Reference/a00226.html
 188share/doc/libpqxx/Reference/a00227.html
 189share/doc/libpqxx/Reference/a00228.html
 190share/doc/libpqxx/Reference/a00229.html
 191share/doc/libpqxx/Reference/a00230.html
 192share/doc/libpqxx/Reference/a00231.html
 193share/doc/libpqxx/Reference/a00232.html
 194share/doc/libpqxx/Reference/a00233.html
 195share/doc/libpqxx/Reference/a00234.html
 196share/doc/libpqxx/Reference/a00235.html
 197share/doc/libpqxx/Reference/a00236.html
 198share/doc/libpqxx/Reference/a00237.html
 199share/doc/libpqxx/Reference/a00238.html
 200share/doc/libpqxx/Reference/a00239.html
 201share/doc/libpqxx/Reference/a00240.html
 202share/doc/libpqxx/Reference/a00241.html
 203share/doc/libpqxx/Reference/a00242.html
 204share/doc/libpqxx/Reference/a00243.html
 205share/doc/libpqxx/Reference/a00244.html
 206share/doc/libpqxx/Reference/a00245.html
 207share/doc/libpqxx/Reference/a00246.html
 208share/doc/libpqxx/Reference/a00247.html
 209share/doc/libpqxx/Reference/a00248.html
 210share/doc/libpqxx/Reference/a00249.html
 211share/doc/libpqxx/Reference/a00250.html
 212share/doc/libpqxx/Reference/a00251.html
 213share/doc/libpqxx/Reference/a00252.html
 214share/doc/libpqxx/Reference/a00253.html
 215share/doc/libpqxx/Reference/a00254.html
 216share/doc/libpqxx/Reference/a00255.html
 217share/doc/libpqxx/Reference/a00256.html
 218share/doc/libpqxx/Reference/a00257.html
 219share/doc/libpqxx/Reference/a00258.html
 220share/doc/libpqxx/Reference/a00259.html
 221share/doc/libpqxx/Reference/a00260.html
 222share/doc/libpqxx/Reference/a00261.html
 223share/doc/libpqxx/Reference/a00262.html
 224share/doc/libpqxx/Reference/a00263.html
 225share/doc/libpqxx/Reference/a00264.html
 226share/doc/libpqxx/Reference/a00265.html
 227share/doc/libpqxx/Reference/a00266.html
 228share/doc/libpqxx/Reference/a00267.html
 229share/doc/libpqxx/Reference/a00268.html
 230share/doc/libpqxx/Reference/a00269.html
 231share/doc/libpqxx/Reference/a00270.html
 232share/doc/libpqxx/Reference/a00271.html
 233share/doc/libpqxx/Reference/a00272.html
 234share/doc/libpqxx/Reference/a00273.html
 235share/doc/libpqxx/Reference/a00274.html
 236share/doc/libpqxx/Reference/a00275.html
 237share/doc/libpqxx/Reference/a00276.html
 238share/doc/libpqxx/Reference/a00277.html
 239share/doc/libpqxx/Reference/a00278.html
 240share/doc/libpqxx/Reference/a00279.html
 241share/doc/libpqxx/Reference/a00280.html
 242share/doc/libpqxx/Reference/a00281.html
 243share/doc/libpqxx/Reference/a00282.html
 244share/doc/libpqxx/Reference/a00283.html
 245share/doc/libpqxx/Reference/a00284.html
 246share/doc/libpqxx/Reference/a00285.html
 247share/doc/libpqxx/Reference/a00286.html
 248share/doc/libpqxx/Reference/a00287.html
 249share/doc/libpqxx/Reference/a00288.html
 250share/doc/libpqxx/Reference/a00289.html
 251share/doc/libpqxx/Reference/a00290.html
 252share/doc/libpqxx/Reference/a00291.html
 253share/doc/libpqxx/Reference/a00292.html
 254share/doc/libpqxx/Reference/a00293.html
 255share/doc/libpqxx/Reference/a00294.html
 256share/doc/libpqxx/Reference/a00295.html
 257share/doc/libpqxx/Reference/a00296.html
 258share/doc/libpqxx/Reference/a00297.html
 259share/doc/libpqxx/Reference/a00298.html
 260share/doc/libpqxx/Reference/a00299.html
 261share/doc/libpqxx/Reference/a00300.html
 262share/doc/libpqxx/Reference/a00301.html
 263share/doc/libpqxx/Reference/a00302.html
 264share/doc/libpqxx/Reference/a00303.html
 265share/doc/libpqxx/Reference/a00304.html
 266share/doc/libpqxx/Reference/a00305.html
 267share/doc/libpqxx/Reference/a00306.html
 268share/doc/libpqxx/Reference/a00307.html
 269share/doc/libpqxx/Reference/a00308.html
 270share/doc/libpqxx/Reference/a00309.html
 271share/doc/libpqxx/Reference/a00310.html
 272share/doc/libpqxx/Reference/a00311.html
 273share/doc/libpqxx/Reference/a00312.html
 274share/doc/libpqxx/Reference/a00313.html
 275share/doc/libpqxx/Reference/a00314.html
 276share/doc/libpqxx/Reference/a00315.html
 277share/doc/libpqxx/Reference/a00316.html
 278share/doc/libpqxx/Reference/a00317.html
 279share/doc/libpqxx/Reference/a00318.html
 280share/doc/libpqxx/Reference/a00319.html
4share/doc/libpqxx/Reference/annotated.html 281share/doc/libpqxx/Reference/annotated.html
5share/doc/libpqxx/Reference/binarystring_8cxx.html 
6share/doc/libpqxx/Reference/binarystring_8hxx-source.html 
7share/doc/libpqxx/Reference/binarystring_8hxx.html 
8share/doc/libpqxx/Reference/cachedresult_8cxx.html 
9share/doc/libpqxx/Reference/cachedresult_8h-source.html 
10share/doc/libpqxx/Reference/cachedresult_8h.html 
11share/doc/libpqxx/Reference/classes.html 282share/doc/libpqxx/Reference/classes.html
12share/doc/libpqxx/Reference/classpqxx_1_1Cursor-members.html 283share/doc/libpqxx/Reference/dir_3d7cbfaf9a6edea0a348c9e21a88d076.html
13share/doc/libpqxx/Reference/classpqxx_1_1Cursor.html 284share/doc/libpqxx/Reference/dir_68267d1309a1af8e8297ef4c3efbcdba.html
14share/doc/libpqxx/Reference/classpqxx_1_1asyncconnection-members.html 285share/doc/libpqxx/Reference/dir_d44c64559bbebec7f509842c48db8b23.html
15share/doc/libpqxx/Reference/classpqxx_1_1asyncconnection.html 
16share/doc/libpqxx/Reference/classpqxx_1_1basic__fieldstream-members.html 
17share/doc/libpqxx/Reference/classpqxx_1_1basic__fieldstream.html 
18share/doc/libpqxx/Reference/classpqxx_1_1basic__ilostream-members.html 
19share/doc/libpqxx/Reference/classpqxx_1_1basic__ilostream.html 
20share/doc/libpqxx/Reference/classpqxx_1_1basic__lostream-members.html 
21share/doc/libpqxx/Reference/classpqxx_1_1basic__lostream.html 
22share/doc/libpqxx/Reference/classpqxx_1_1basic__olostream-members.html 
23share/doc/libpqxx/Reference/classpqxx_1_1basic__olostream.html 
24share/doc/libpqxx/Reference/classpqxx_1_1basic__robusttransaction-members.html 
25share/doc/libpqxx/Reference/classpqxx_1_1basic__robusttransaction.html 
26share/doc/libpqxx/Reference/classpqxx_1_1basic__transaction-members.html 
27share/doc/libpqxx/Reference/classpqxx_1_1basic__transaction.html 
28share/doc/libpqxx/Reference/classpqxx_1_1binarystring-members.html 
29share/doc/libpqxx/Reference/classpqxx_1_1binarystring.html 
30share/doc/libpqxx/Reference/classpqxx_1_1broken__connection-members.html 
31share/doc/libpqxx/Reference/classpqxx_1_1broken__connection.html 
32share/doc/libpqxx/Reference/classpqxx_1_1cachedresult-members.html 
33share/doc/libpqxx/Reference/classpqxx_1_1cachedresult.html 
34share/doc/libpqxx/Reference/classpqxx_1_1connection-members.html 
35share/doc/libpqxx/Reference/classpqxx_1_1connection.html 
36share/doc/libpqxx/Reference/classpqxx_1_1connection__base-members.html 
37share/doc/libpqxx/Reference/classpqxx_1_1connection__base.html 
38share/doc/libpqxx/Reference/classpqxx_1_1cursor__base-members.html 
39share/doc/libpqxx/Reference/classpqxx_1_1cursor__base.html 
40share/doc/libpqxx/Reference/classpqxx_1_1dbtransaction-members.html 
41share/doc/libpqxx/Reference/classpqxx_1_1dbtransaction.html 
42share/doc/libpqxx/Reference/classpqxx_1_1field__streambuf-members.html 
43share/doc/libpqxx/Reference/classpqxx_1_1field__streambuf.html 
44share/doc/libpqxx/Reference/classpqxx_1_1icursor__iterator-members.html 
45share/doc/libpqxx/Reference/classpqxx_1_1icursor__iterator.html 
46share/doc/libpqxx/Reference/classpqxx_1_1icursorstream-members.html 
47share/doc/libpqxx/Reference/classpqxx_1_1icursorstream.html 
48share/doc/libpqxx/Reference/classpqxx_1_1in__doubt__error-members.html 
49share/doc/libpqxx/Reference/classpqxx_1_1in__doubt__error.html 
50share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1Escaper-members.html 
51share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1Escaper.html 
52share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1PQAlloc-members.html 
53share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1PQAlloc.html 
54share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1disable__noticer-members.html 
55share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1disable__noticer.html 
56share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1namedclass-members.html 
57share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1namedclass.html 
58share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1scoped__array-members.html 
59share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1scoped__array.html 
60share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1scoped__noticer-members.html 
61share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1scoped__noticer.html 
62share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1transactionfocus-members.html 
63share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1transactionfocus.html 
64share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1unique-members.html 
65share/doc/libpqxx/Reference/classpqxx_1_1internal_1_1unique.html 
66share/doc/libpqxx/Reference/classpqxx_1_1items-members.html 
67share/doc/libpqxx/Reference/classpqxx_1_1items.html 
68share/doc/libpqxx/Reference/classpqxx_1_1largeobject-members.html 
69share/doc/libpqxx/Reference/classpqxx_1_1largeobject.html 
70share/doc/libpqxx/Reference/classpqxx_1_1largeobject__streambuf-members.html 
71share/doc/libpqxx/Reference/classpqxx_1_1largeobject__streambuf.html 
72share/doc/libpqxx/Reference/classpqxx_1_1largeobjectaccess-members.html 
73share/doc/libpqxx/Reference/classpqxx_1_1largeobjectaccess.html 
74share/doc/libpqxx/Reference/classpqxx_1_1lazyconnection-members.html 
75share/doc/libpqxx/Reference/classpqxx_1_1lazyconnection.html 
76share/doc/libpqxx/Reference/classpqxx_1_1nontransaction-members.html 
77share/doc/libpqxx/Reference/classpqxx_1_1nontransaction.html 
78share/doc/libpqxx/Reference/classpqxx_1_1nullconnection-members.html 
79share/doc/libpqxx/Reference/classpqxx_1_1nullconnection.html 
80share/doc/libpqxx/Reference/classpqxx_1_1pipeline-members.html 
81share/doc/libpqxx/Reference/classpqxx_1_1pipeline.html 
82share/doc/libpqxx/Reference/classpqxx_1_1result-members.html 
83share/doc/libpqxx/Reference/classpqxx_1_1result.html 
84share/doc/libpqxx/Reference/classpqxx_1_1result_1_1const__fielditerator-members.html 
85share/doc/libpqxx/Reference/classpqxx_1_1result_1_1const__fielditerator.html 
86share/doc/libpqxx/Reference/classpqxx_1_1result_1_1const__iterator-members.html 
87share/doc/libpqxx/Reference/classpqxx_1_1result_1_1const__iterator.html 
88share/doc/libpqxx/Reference/classpqxx_1_1result_1_1const__reverse__fielditerator-members.html 
89share/doc/libpqxx/Reference/classpqxx_1_1result_1_1const__reverse__fielditerator.html 
90share/doc/libpqxx/Reference/classpqxx_1_1result_1_1const__reverse__iterator-members.html 
91share/doc/libpqxx/Reference/classpqxx_1_1result_1_1const__reverse__iterator.html 
92share/doc/libpqxx/Reference/classpqxx_1_1result_1_1field-members.html 
93share/doc/libpqxx/Reference/classpqxx_1_1result_1_1field.html 
94share/doc/libpqxx/Reference/classpqxx_1_1result_1_1tuple-members.html 
95share/doc/libpqxx/Reference/classpqxx_1_1result_1_1tuple.html 
96share/doc/libpqxx/Reference/classpqxx_1_1robusttransaction-members.html 
97share/doc/libpqxx/Reference/classpqxx_1_1robusttransaction.html 
98share/doc/libpqxx/Reference/classpqxx_1_1sql__error-members.html 
99share/doc/libpqxx/Reference/classpqxx_1_1sql__error.html 
100share/doc/libpqxx/Reference/classpqxx_1_1tablereader-members.html 
101share/doc/libpqxx/Reference/classpqxx_1_1tablereader.html 
102share/doc/libpqxx/Reference/classpqxx_1_1tablestream-members.html 
103share/doc/libpqxx/Reference/classpqxx_1_1tablestream.html 
104share/doc/libpqxx/Reference/classpqxx_1_1tablewriter-members.html 
105share/doc/libpqxx/Reference/classpqxx_1_1tablewriter.html 
106share/doc/libpqxx/Reference/classpqxx_1_1transaction-members.html 
107share/doc/libpqxx/Reference/classpqxx_1_1transaction.html 
108share/doc/libpqxx/Reference/classpqxx_1_1transaction__base-members.html 
109share/doc/libpqxx/Reference/classpqxx_1_1transaction__base.html 
110share/doc/libpqxx/Reference/classpqxx_1_1transactor-members.html 
111share/doc/libpqxx/Reference/classpqxx_1_1transactor.html 
112share/doc/libpqxx/Reference/classpqxx_1_1trigger-members.html 
113share/doc/libpqxx/Reference/classpqxx_1_1trigger.html 
114share/doc/libpqxx/Reference/compiler_8h-source.html 
115share/doc/libpqxx/Reference/compiler_8h.html 
116share/doc/libpqxx/Reference/config-internal-autotools_8h-source.html 
117share/doc/libpqxx/Reference/config-internal-autotools_8h.html 
118share/doc/libpqxx/Reference/config-internal-compiler_8h-source.html 
119share/doc/libpqxx/Reference/config-internal-compiler_8h.html 
120share/doc/libpqxx/Reference/config-internal-libpq_8h-source.html 
121share/doc/libpqxx/Reference/config-internal-libpq_8h.html 
122share/doc/libpqxx/Reference/config-public-compiler_8h-source.html 
123share/doc/libpqxx/Reference/config-public-compiler_8h.html 
124share/doc/libpqxx/Reference/config_8h-source.html 
125share/doc/libpqxx/Reference/config_8h.html 
126share/doc/libpqxx/Reference/connection_8cxx.html 
127share/doc/libpqxx/Reference/connection_8h-source.html 
128share/doc/libpqxx/Reference/connection_8h.html 
129share/doc/libpqxx/Reference/connection_8hxx-source.html 
130share/doc/libpqxx/Reference/connection_8hxx.html 
131share/doc/libpqxx/Reference/connection__base_8cxx.html 
132share/doc/libpqxx/Reference/connection__base_8h-source.html 
133share/doc/libpqxx/Reference/connection__base_8h.html 
134share/doc/libpqxx/Reference/connection__base_8hxx-source.html 
135share/doc/libpqxx/Reference/connection__base_8hxx.html 
136share/doc/libpqxx/Reference/connectionitf_8h-source.html 
137share/doc/libpqxx/Reference/connectionitf_8h.html 
138share/doc/libpqxx/Reference/cursor_8cxx.html 
139share/doc/libpqxx/Reference/cursor_8h-source.html 
140share/doc/libpqxx/Reference/cursor_8h.html 
141share/doc/libpqxx/Reference/cursor_8hxx-source.html 
142share/doc/libpqxx/Reference/cursor_8hxx.html 
143share/doc/libpqxx/Reference/dbtransaction_8cxx.html 
144share/doc/libpqxx/Reference/dbtransaction_8h-source.html 
145share/doc/libpqxx/Reference/dbtransaction_8h.html 
146share/doc/libpqxx/Reference/dbtransaction_8hxx-source.html 
147share/doc/libpqxx/Reference/dbtransaction_8hxx.html 
148share/doc/libpqxx/Reference/deprecated.html 
149share/doc/libpqxx/Reference/dir_000000.html 
150share/doc/libpqxx/Reference/dir_000001.html 
151share/doc/libpqxx/Reference/dir_000002.html 
152share/doc/libpqxx/Reference/dir_000002_000000.html 
153share/doc/libpqxx/Reference/dirs.html 
154share/doc/libpqxx/Reference/doxygen.css 286share/doc/libpqxx/Reference/doxygen.css
155share/doc/libpqxx/Reference/doxygen.png 287share/doc/libpqxx/Reference/doxygen.png
156share/doc/libpqxx/Reference/except_8h-source.html 
157share/doc/libpqxx/Reference/except_8h.html 
158share/doc/libpqxx/Reference/except_8hxx-source.html 
159share/doc/libpqxx/Reference/except_8hxx.html 
160share/doc/libpqxx/Reference/files.html 
161share/doc/libpqxx/Reference/functions.html 288share/doc/libpqxx/Reference/functions.html
162share/doc/libpqxx/Reference/functions_0x62.html 289share/doc/libpqxx/Reference/functions_0x62.html
163share/doc/libpqxx/Reference/functions_0x63.html 290share/doc/libpqxx/Reference/functions_0x63.html
164share/doc/libpqxx/Reference/functions_0x64.html 291share/doc/libpqxx/Reference/functions_0x64.html
165share/doc/libpqxx/Reference/functions_0x65.html 292share/doc/libpqxx/Reference/functions_0x65.html
166share/doc/libpqxx/Reference/functions_0x66.html 293share/doc/libpqxx/Reference/functions_0x66.html
167share/doc/libpqxx/Reference/functions_0x67.html 294share/doc/libpqxx/Reference/functions_0x67.html
168share/doc/libpqxx/Reference/functions_0x68.html 295share/doc/libpqxx/Reference/functions_0x68.html
169share/doc/libpqxx/Reference/functions_0x69.html 296share/doc/libpqxx/Reference/functions_0x69.html
170share/doc/libpqxx/Reference/functions_0x6c.html 297share/doc/libpqxx/Reference/functions_0x6c.html
171share/doc/libpqxx/Reference/functions_0x6d.html 298share/doc/libpqxx/Reference/functions_0x6d.html
172share/doc/libpqxx/Reference/functions_0x6e.html 299share/doc/libpqxx/Reference/functions_0x6e.html
173share/doc/libpqxx/Reference/functions_0x6f.html 300share/doc/libpqxx/Reference/functions_0x6f.html
@@ -194,268 +321,108 @@ share/doc/libpqxx/Reference/functions_fu @@ -194,268 +321,108 @@ share/doc/libpqxx/Reference/functions_fu
194share/doc/libpqxx/Reference/functions_func_0x6c.html 321share/doc/libpqxx/Reference/functions_func_0x6c.html
195share/doc/libpqxx/Reference/functions_func_0x6d.html 322share/doc/libpqxx/Reference/functions_func_0x6d.html
196share/doc/libpqxx/Reference/functions_func_0x6e.html 323share/doc/libpqxx/Reference/functions_func_0x6e.html
197share/doc/libpqxx/Reference/functions_func_0x6f.html 324share/doc/libpqxx/Reference/functions_func_0x6f.html
198share/doc/libpqxx/Reference/functions_func_0x70.html 325share/doc/libpqxx/Reference/functions_func_0x70.html
199share/doc/libpqxx/Reference/functions_func_0x71.html 326share/doc/libpqxx/Reference/functions_func_0x71.html
200share/doc/libpqxx/Reference/functions_func_0x72.html 327share/doc/libpqxx/Reference/functions_func_0x72.html
201share/doc/libpqxx/Reference/functions_func_0x73.html 328share/doc/libpqxx/Reference/functions_func_0x73.html
202share/doc/libpqxx/Reference/functions_func_0x74.html 329share/doc/libpqxx/Reference/functions_func_0x74.html
203share/doc/libpqxx/Reference/functions_func_0x75.html 330share/doc/libpqxx/Reference/functions_func_0x75.html
204share/doc/libpqxx/Reference/functions_func_0x77.html 331share/doc/libpqxx/Reference/functions_func_0x77.html
205share/doc/libpqxx/Reference/functions_func_0x7e.html 332share/doc/libpqxx/Reference/functions_func_0x7e.html
206share/doc/libpqxx/Reference/functions_rela.html 333share/doc/libpqxx/Reference/functions_rela.html
207share/doc/libpqxx/Reference/functions_rela_0x63.html 
208share/doc/libpqxx/Reference/functions_rela_0x64.html 
209share/doc/libpqxx/Reference/functions_rela_0x65.html 
210share/doc/libpqxx/Reference/functions_rela_0x66.html 
211share/doc/libpqxx/Reference/functions_rela_0x68.html 
212share/doc/libpqxx/Reference/functions_rela_0x69.html 
213share/doc/libpqxx/Reference/functions_rela_0x6c.html 
214share/doc/libpqxx/Reference/functions_rela_0x6e.html 
215share/doc/libpqxx/Reference/functions_rela_0x6f.html 
216share/doc/libpqxx/Reference/functions_rela_0x70.html 
217share/doc/libpqxx/Reference/functions_rela_0x71.html 
218share/doc/libpqxx/Reference/functions_rela_0x72.html 
219share/doc/libpqxx/Reference/functions_rela_0x73.html 
220share/doc/libpqxx/Reference/functions_rela_0x74.html 
221share/doc/libpqxx/Reference/functions_rela_0x76.html 
222share/doc/libpqxx/Reference/functions_rela_0x77.html 
223share/doc/libpqxx/Reference/functions_type.html 334share/doc/libpqxx/Reference/functions_type.html
224share/doc/libpqxx/Reference/functions_vars.html 335share/doc/libpqxx/Reference/functions_vars.html
225share/doc/libpqxx/Reference/globals.html 
226share/doc/libpqxx/Reference/globals_0x63.html 
227share/doc/libpqxx/Reference/globals_0x64.html 
228share/doc/libpqxx/Reference/globals_0x65.html 
229share/doc/libpqxx/Reference/globals_0x66.html 
230share/doc/libpqxx/Reference/globals_0x68.html 
231share/doc/libpqxx/Reference/globals_0x69.html 
232share/doc/libpqxx/Reference/globals_0x6c.html 
233share/doc/libpqxx/Reference/globals_0x6e.html 
234share/doc/libpqxx/Reference/globals_0x6f.html 
235share/doc/libpqxx/Reference/globals_0x70.html 
236share/doc/libpqxx/Reference/globals_0x71.html 
237share/doc/libpqxx/Reference/globals_0x72.html 
238share/doc/libpqxx/Reference/globals_0x73.html 
239share/doc/libpqxx/Reference/globals_0x74.html 
240share/doc/libpqxx/Reference/globals_0x76.html 
241share/doc/libpqxx/Reference/globals_0x77.html 
242share/doc/libpqxx/Reference/globals_defs.html 
243share/doc/libpqxx/Reference/globals_enum.html 
244share/doc/libpqxx/Reference/globals_eval.html 
245share/doc/libpqxx/Reference/globals_func.html 
246share/doc/libpqxx/Reference/globals_func_0x64.html 
247share/doc/libpqxx/Reference/globals_func_0x65.html 
248share/doc/libpqxx/Reference/globals_func_0x66.html 
249share/doc/libpqxx/Reference/globals_func_0x6e.html 
250share/doc/libpqxx/Reference/globals_func_0x6f.html 
251share/doc/libpqxx/Reference/globals_func_0x70.html 
252share/doc/libpqxx/Reference/globals_func_0x71.html 
253share/doc/libpqxx/Reference/globals_func_0x73.html 
254share/doc/libpqxx/Reference/globals_func_0x74.html 
255share/doc/libpqxx/Reference/globals_type.html 
256share/doc/libpqxx/Reference/globals_vars.html 
257share/doc/libpqxx/Reference/graph_legend.html 
258share/doc/libpqxx/Reference/hierarchy.html 336share/doc/libpqxx/Reference/hierarchy.html
259share/doc/libpqxx/Reference/index.html 337share/doc/libpqxx/Reference/index.html
260share/doc/libpqxx/Reference/inherits.html 338share/doc/libpqxx/Reference/modules.html
261share/doc/libpqxx/Reference/isolation_8h-source.html 
262share/doc/libpqxx/Reference/isolation_8h.html 
263share/doc/libpqxx/Reference/isolation_8hxx-source.html 
264share/doc/libpqxx/Reference/isolation_8hxx.html 
265share/doc/libpqxx/Reference/largeobject_8cxx.html 
266share/doc/libpqxx/Reference/largeobject_8h-source.html 
267share/doc/libpqxx/Reference/largeobject_8h.html 
268share/doc/libpqxx/Reference/largeobject_8hxx-source.html 
269share/doc/libpqxx/Reference/largeobject_8hxx.html 
270share/doc/libpqxx/Reference/libcompiler_8h-source.html 
271share/doc/libpqxx/Reference/libcompiler_8h.html 
272share/doc/libpqxx/Reference/libpq-forward_8hxx-source.html 
273share/doc/libpqxx/Reference/libpq-forward_8hxx.html 
274share/doc/libpqxx/Reference/namespacePGSTD.html 
275share/doc/libpqxx/Reference/namespacemembers.html 339share/doc/libpqxx/Reference/namespacemembers.html
276share/doc/libpqxx/Reference/namespacemembers_enum.html 340share/doc/libpqxx/Reference/namespacemembers_enum.html
277share/doc/libpqxx/Reference/namespacemembers_eval.html 341share/doc/libpqxx/Reference/namespacemembers_eval.html
278share/doc/libpqxx/Reference/namespacemembers_func.html 342share/doc/libpqxx/Reference/namespacemembers_func.html
279share/doc/libpqxx/Reference/namespacemembers_type.html 343share/doc/libpqxx/Reference/namespacemembers_type.html
280share/doc/libpqxx/Reference/namespacemembers_vars.html 344share/doc/libpqxx/Reference/namespacemembers_vars.html
281share/doc/libpqxx/Reference/namespacepqxx.html 
282share/doc/libpqxx/Reference/namespacepqxx_1_1internal.html 
283share/doc/libpqxx/Reference/namespacepqxx_1_1internal_1_1pq.html 
284share/doc/libpqxx/Reference/namespaces.html 345share/doc/libpqxx/Reference/namespaces.html
285share/doc/libpqxx/Reference/namespacestd.html 
286share/doc/libpqxx/Reference/nontransaction_8cxx.html 
287share/doc/libpqxx/Reference/nontransaction_8h-source.html 
288share/doc/libpqxx/Reference/nontransaction_8h.html 
289share/doc/libpqxx/Reference/nontransaction_8hxx-source.html 
290share/doc/libpqxx/Reference/nontransaction_8hxx.html 
291share/doc/libpqxx/Reference/oldcursor_8cxx.html 
292share/doc/libpqxx/Reference/pages.html 346share/doc/libpqxx/Reference/pages.html
293share/doc/libpqxx/Reference/pipeline_8cxx.html 
294share/doc/libpqxx/Reference/pipeline_8hxx-source.html 
295share/doc/libpqxx/Reference/pipeline_8hxx.html 
296share/doc/libpqxx/Reference/result_8cxx.html 
297share/doc/libpqxx/Reference/result_8h-source.html 
298share/doc/libpqxx/Reference/result_8h.html 
299share/doc/libpqxx/Reference/result_8hxx-source.html 
300share/doc/libpqxx/Reference/result_8hxx.html 
301share/doc/libpqxx/Reference/robusttransaction_8cxx.html 
302share/doc/libpqxx/Reference/robusttransaction_8h-source.html 
303share/doc/libpqxx/Reference/robusttransaction_8h.html 
304share/doc/libpqxx/Reference/robusttransaction_8hxx-source.html 
305share/doc/libpqxx/Reference/robusttransaction_8hxx.html 
306share/doc/libpqxx/Reference/structPGSTD_1_1char__traits.html 
307share/doc/libpqxx/Reference/structPGSTD_1_1char__traits_3_01char_01_4-members.html 
308share/doc/libpqxx/Reference/structPGSTD_1_1char__traits_3_01char_01_4.html 
309share/doc/libpqxx/Reference/structPGSTD_1_1char__traits_3_01unsigned_01char_01_4-members.html 
310share/doc/libpqxx/Reference/structPGSTD_1_1char__traits_3_01unsigned_01char_01_4.html 
311share/doc/libpqxx/Reference/structPGSTD_1_1numeric__limits-members.html 
312share/doc/libpqxx/Reference/structPGSTD_1_1numeric__limits.html 
313share/doc/libpqxx/Reference/structpqxx_1_1Cursor_1_1unknown__position-members.html 
314share/doc/libpqxx/Reference/structpqxx_1_1Cursor_1_1unknown__position.html 
315share/doc/libpqxx/Reference/structpqxx_1_1internal_1_1deref__ptr-members.html 
316share/doc/libpqxx/Reference/structpqxx_1_1internal_1_1deref__ptr.html 
317share/doc/libpqxx/Reference/structpqxx_1_1internal_1_1dereference-members.html 
318share/doc/libpqxx/Reference/structpqxx_1_1internal_1_1dereference.html 
319share/doc/libpqxx/Reference/structpqxx_1_1isolation__traits-members.html 
320share/doc/libpqxx/Reference/structpqxx_1_1isolation__traits.html 
321share/doc/libpqxx/Reference/structpqxx_1_1nonnoticer-members.html 
322share/doc/libpqxx/Reference/structpqxx_1_1nonnoticer.html 
323share/doc/libpqxx/Reference/structpqxx_1_1noticer-members.html 
324share/doc/libpqxx/Reference/structpqxx_1_1noticer.html 
325share/doc/libpqxx/Reference/tablereader_8cxx.html 
326share/doc/libpqxx/Reference/tablereader_8h-source.html 
327share/doc/libpqxx/Reference/tablereader_8h.html 
328share/doc/libpqxx/Reference/tablereader_8hxx-source.html 
329share/doc/libpqxx/Reference/tablereader_8hxx.html 
330share/doc/libpqxx/Reference/tablestream_8cxx.html 
331share/doc/libpqxx/Reference/tablestream_8h-source.html 
332share/doc/libpqxx/Reference/tablestream_8h.html 
333share/doc/libpqxx/Reference/tablestream_8hxx-source.html 
334share/doc/libpqxx/Reference/tablestream_8hxx.html 
335share/doc/libpqxx/Reference/tablewriter_8cxx.html 
336share/doc/libpqxx/Reference/tablewriter_8h-source.html 
337share/doc/libpqxx/Reference/tablewriter_8h.html 
338share/doc/libpqxx/Reference/tablewriter_8hxx-source.html 
339share/doc/libpqxx/Reference/tablewriter_8hxx.html 
340share/doc/libpqxx/Reference/transaction_8cxx.html 
341share/doc/libpqxx/Reference/transaction_8h-source.html 
342share/doc/libpqxx/Reference/transaction_8h.html 
343share/doc/libpqxx/Reference/transaction_8hxx-source.html 
344share/doc/libpqxx/Reference/transaction_8hxx.html 
345share/doc/libpqxx/Reference/transaction__base_8cxx.html 
346share/doc/libpqxx/Reference/transaction__base_8h-source.html 
347share/doc/libpqxx/Reference/transaction__base_8h.html 
348share/doc/libpqxx/Reference/transaction__base_8hxx-source.html 
349share/doc/libpqxx/Reference/transaction__base_8hxx.html 
350share/doc/libpqxx/Reference/transactionitf_8h-source.html 
351share/doc/libpqxx/Reference/transactionitf_8h.html 
352share/doc/libpqxx/Reference/transactor_8h-source.html 
353share/doc/libpqxx/Reference/transactor_8h.html 
354share/doc/libpqxx/Reference/transactor_8hxx-source.html 
355share/doc/libpqxx/Reference/transactor_8hxx.html 
356share/doc/libpqxx/Reference/trigger_8h-source.html 
357share/doc/libpqxx/Reference/trigger_8h.html 
358share/doc/libpqxx/Reference/trigger_8hxx-source.html 
359share/doc/libpqxx/Reference/trigger_8hxx.html 
360share/doc/libpqxx/Reference/util_8cxx.html 
361share/doc/libpqxx/Reference/util_8h-source.html 
362share/doc/libpqxx/Reference/util_8h.html 
363share/doc/libpqxx/Reference/util_8hxx-source.html 
364share/doc/libpqxx/Reference/util_8hxx.html 
365share/doc/libpqxx/Tutorial/ch01.html 347share/doc/libpqxx/Tutorial/ch01.html
366share/doc/libpqxx/Tutorial/ch02.html 348share/doc/libpqxx/Tutorial/ch02.html
367share/doc/libpqxx/Tutorial/ch03.html 349share/doc/libpqxx/Tutorial/ch03.html
368share/doc/libpqxx/Tutorial/ch03s02.html 350share/doc/libpqxx/Tutorial/ch03s02.html
369share/doc/libpqxx/Tutorial/ch03s03.html 351share/doc/libpqxx/Tutorial/ch03s03.html
370share/doc/libpqxx/Tutorial/ch03s04.html 352share/doc/libpqxx/Tutorial/ch03s04.html
371share/doc/libpqxx/Tutorial/ch03s05.html 353share/doc/libpqxx/Tutorial/ch03s05.html
372share/doc/libpqxx/Tutorial/ch03s06.html 354share/doc/libpqxx/Tutorial/ch03s06.html
373share/doc/libpqxx/Tutorial/ch03s07.html 355share/doc/libpqxx/Tutorial/ch03s07.html
374share/doc/libpqxx/Tutorial/index.html 356share/doc/libpqxx/Tutorial/index.html
375share/doc/libpqxx/Tutorial/pr01.html 357share/examples/libpqxx/runner.cxx
376share/examples/libpqxx/test000.cxx 358share/examples/libpqxx/test000.cxx
377share/examples/libpqxx/test001.cxx 359share/examples/libpqxx/test001.cxx
378share/examples/libpqxx/test002.cxx 360share/examples/libpqxx/test002.cxx
379share/examples/libpqxx/test003.cxx 
380share/examples/libpqxx/test004.cxx 361share/examples/libpqxx/test004.cxx
381share/examples/libpqxx/test005.cxx 
382share/examples/libpqxx/test006.cxx 
383share/examples/libpqxx/test007.cxx 362share/examples/libpqxx/test007.cxx
384share/examples/libpqxx/test008.cxx 
385share/examples/libpqxx/test009.cxx 
386share/examples/libpqxx/test010.cxx 363share/examples/libpqxx/test010.cxx
387share/examples/libpqxx/test011.cxx 364share/examples/libpqxx/test011.cxx
388share/examples/libpqxx/test012.cxx 365share/examples/libpqxx/test012.cxx
389share/examples/libpqxx/test013.cxx 366share/examples/libpqxx/test013.cxx
390share/examples/libpqxx/test014.cxx 367share/examples/libpqxx/test014.cxx
391share/examples/libpqxx/test015.cxx 368share/examples/libpqxx/test015.cxx
392share/examples/libpqxx/test016.cxx 369share/examples/libpqxx/test016.cxx
393share/examples/libpqxx/test017.cxx 370share/examples/libpqxx/test017.cxx
394share/examples/libpqxx/test018.cxx 371share/examples/libpqxx/test018.cxx
395share/examples/libpqxx/test019.cxx 
396share/examples/libpqxx/test020.cxx 372share/examples/libpqxx/test020.cxx
397share/examples/libpqxx/test021.cxx 373share/examples/libpqxx/test021.cxx
398share/examples/libpqxx/test022.cxx 
399share/examples/libpqxx/test023.cxx 374share/examples/libpqxx/test023.cxx
400share/examples/libpqxx/test024.cxx 
401share/examples/libpqxx/test025.cxx 
402share/examples/libpqxx/test026.cxx 375share/examples/libpqxx/test026.cxx
403share/examples/libpqxx/test027.cxx 
404share/examples/libpqxx/test028.cxx 
405share/examples/libpqxx/test029.cxx 376share/examples/libpqxx/test029.cxx
406share/examples/libpqxx/test030.cxx 377share/examples/libpqxx/test030.cxx
407share/examples/libpqxx/test031.cxx 378share/examples/libpqxx/test031.cxx
408share/examples/libpqxx/test032.cxx 379share/examples/libpqxx/test032.cxx
409share/examples/libpqxx/test033.cxx 380share/examples/libpqxx/test033.cxx
410share/examples/libpqxx/test034.cxx 381share/examples/libpqxx/test034.cxx
411share/examples/libpqxx/test035.cxx 382share/examples/libpqxx/test035.cxx
412share/examples/libpqxx/test036.cxx 383share/examples/libpqxx/test036.cxx
413share/examples/libpqxx/test037.cxx 384share/examples/libpqxx/test037.cxx
414share/examples/libpqxx/test038.cxx 
415share/examples/libpqxx/test039.cxx 385share/examples/libpqxx/test039.cxx
416share/examples/libpqxx/test040.cxx 
417share/examples/libpqxx/test041.cxx 
418share/examples/libpqxx/test042.cxx 
419share/examples/libpqxx/test043.cxx 
420share/examples/libpqxx/test044.cxx 
421share/examples/libpqxx/test045.cxx 
422share/examples/libpqxx/test046.cxx 386share/examples/libpqxx/test046.cxx
423share/examples/libpqxx/test047.cxx 
424share/examples/libpqxx/test048.cxx 387share/examples/libpqxx/test048.cxx
425share/examples/libpqxx/test049.cxx 388share/examples/libpqxx/test049.cxx
426share/examples/libpqxx/test050.cxx 389share/examples/libpqxx/test050.cxx
427share/examples/libpqxx/test051.cxx 390share/examples/libpqxx/test051.cxx
428share/examples/libpqxx/test052.cxx 391share/examples/libpqxx/test052.cxx
429share/examples/libpqxx/test053.cxx 392share/examples/libpqxx/test053.cxx
430share/examples/libpqxx/test054.cxx 393share/examples/libpqxx/test054.cxx
431share/examples/libpqxx/test055.cxx 394share/examples/libpqxx/test055.cxx
432share/examples/libpqxx/test056.cxx 395share/examples/libpqxx/test056.cxx
433share/examples/libpqxx/test057.cxx 396share/examples/libpqxx/test057.cxx
434share/examples/libpqxx/test058.cxx 397share/examples/libpqxx/test058.cxx
435share/examples/libpqxx/test059.cxx 398share/examples/libpqxx/test059.cxx
436share/examples/libpqxx/test060.cxx 399share/examples/libpqxx/test060.cxx
437share/examples/libpqxx/test061.cxx 400share/examples/libpqxx/test061.cxx
438share/examples/libpqxx/test062.cxx 401share/examples/libpqxx/test062.cxx
439share/examples/libpqxx/test063.cxx 402share/examples/libpqxx/test063.cxx
440share/examples/libpqxx/test064.cxx 403share/examples/libpqxx/test064.cxx
441share/examples/libpqxx/test065.cxx 404share/examples/libpqxx/test065.cxx
442share/examples/libpqxx/test066.cxx 405share/examples/libpqxx/test066.cxx
443share/examples/libpqxx/test067.cxx 406share/examples/libpqxx/test067.cxx
444share/examples/libpqxx/test068.cxx 
445share/examples/libpqxx/test069.cxx 407share/examples/libpqxx/test069.cxx
446share/examples/libpqxx/test070.cxx 408share/examples/libpqxx/test070.cxx
447share/examples/libpqxx/test071.cxx 409share/examples/libpqxx/test071.cxx
448share/examples/libpqxx/test072.cxx 410share/examples/libpqxx/test072.cxx
449share/examples/libpqxx/test073.cxx 411share/examples/libpqxx/test073.cxx
450share/examples/libpqxx/test074.cxx 412share/examples/libpqxx/test074.cxx
451share/examples/libpqxx/test075.cxx 413share/examples/libpqxx/test075.cxx
452share/examples/libpqxx/test076.cxx 414share/examples/libpqxx/test076.cxx
453share/examples/libpqxx/test077.cxx 415share/examples/libpqxx/test077.cxx
454share/examples/libpqxx/test078.cxx 416share/examples/libpqxx/test078.cxx
455share/examples/libpqxx/test079.cxx 417share/examples/libpqxx/test079.cxx
456share/examples/libpqxx/test080.cxx 
457share/examples/libpqxx/test081.cxx 
458share/examples/libpqxx/test082.cxx 418share/examples/libpqxx/test082.cxx
459share/examples/libpqxx/test083.cxx 419share/examples/libpqxx/test083.cxx
460share/examples/libpqxx/test084.cxx 420share/examples/libpqxx/test084.cxx
461share/examples/libpqxx/test085.cxx 421share/examples/libpqxx/test086.cxx
 422share/examples/libpqxx/test087.cxx
 423share/examples/libpqxx/test088.cxx
 424share/examples/libpqxx/test089.cxx
 425share/examples/libpqxx/test090.cxx
 426share/examples/libpqxx/test092.cxx
 427share/examples/libpqxx/test093.cxx
 428share/examples/libpqxx/test094.cxx

cvs diff -r1.2 -r1.3 pkgsrc/databases/libpqxx/patches/Attic/patch-ab (expand / switch to unified diff)

--- pkgsrc/databases/libpqxx/patches/Attic/patch-ab 2011/11/24 14:14:58 1.2
+++ pkgsrc/databases/libpqxx/patches/Attic/patch-ab 2013/02/12 04:35:24 1.3
@@ -1,15 +1,14 @@ @@ -1,15 +1,14 @@
1$NetBSD: patch-ab,v 1.2 2011/11/24 14:14:58 joerg Exp $ 1$NetBSD: patch-ab,v 1.3 2013/02/12 04:35:24 hiramatsu Exp $
2 2
3--- src/connection_base.cxx.orig 2005-06-28 08:53:14.000000000 +0000 3Include sys/time.h to get struct timeval in all cases.
 4
 5--- src/connection_base.cxx.orig 2013-02-11 10:35:50.000000000 +0000
4+++ src/connection_base.cxx 6+++ src/connection_base.cxx
5@@ -19,8 +19,10 @@ 7@@ -24,6 +24,7 @@
6  8 #include <cstring>
7 #include <algorithm> 
8 #include <cstdio> 
9+#include <cstring> 
10 #include <ctime> 9 #include <ctime>
11 #include <stdexcept> 10 #include <stdexcept>
12+#include <sys/time.h> 11+#include <sys/time.h>
13  12
14 #ifdef PQXX_HAVE_SYS_SELECT_H 13 #ifdef PQXX_HAVE_SYS_SELECT_H
15 #include <sys/select.h> 14 #include <sys/select.h>

cvs diff -r1.1 -r1.2 pkgsrc/databases/libpqxx/patches/Attic/patch-src_largeobject.cxx (expand / switch to unified diff)

--- pkgsrc/databases/libpqxx/patches/Attic/patch-src_largeobject.cxx 2011/11/24 14:14:58 1.1
+++ pkgsrc/databases/libpqxx/patches/Attic/patch-src_largeobject.cxx 2013/02/12 04:35:24 1.2
@@ -1,12 +1,14 @@ @@ -1,12 +1,14 @@
1$NetBSD: patch-src_largeobject.cxx,v 1.1 2011/11/24 14:14:58 joerg Exp $ 1$NetBSD: patch-src_largeobject.cxx,v 1.2 2013/02/12 04:35:24 hiramatsu Exp $
2 2
3--- src/largeobject.cxx.orig 2011-11-24 00:12:56.000000000 +0000 3Fix build with modern GCC.
 4
 5--- src/largeobject.cxx.orig 2013-02-11 10:36:16.000000000 +0000
4+++ src/largeobject.cxx 6+++ src/largeobject.cxx
5@@ -18,6 +18,7 @@ 7@@ -18,6 +18,7 @@
6 #include "pqxx/compiler.h" 8 #include "pqxx/compiler-internal.hxx"
7  9
8 #include <cerrno> 10 #include <cerrno>
9+#include <cstring> 11+#include <cstring>
10 #include <stdexcept> 12 #include <stdexcept>
11  13
12 #include "libpq-fe.h" 14 #include "libpq-fe.h"