public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/soci] update-to-4.1.4: - Added a missing cstdio header include for g++-4.4 compatibility
@ 2026-06-20  4:39 Denis Arnaud
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Arnaud @ 2026-06-20  4:39 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/soci
Branch : update-to-4.1.4
Commit : b5dfded6258b8230b4c4bd493dafed38301a1f04
Author : Denis Arnaud <denisarnaud@fedoraproject.org>
Date   : 2009-05-05T19:03:57+00:00
Stats  : +16/-1 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/soci/c/b5dfded6258b8230b4c4bd493dafed38301a1f04?branch=update-to-4.1.4

Log:
- Added a missing cstdio header include for g++-4.4 compatibility

---
diff --git a/import.log b/import.log
index 4c31c72..ea08f8c 100644
--- a/import.log
+++ b/import.log
@@ -1 +1,2 @@
 soci-3_0_0-6_fc10:HEAD:soci-3.0.0-6.fc10.src.rpm:1241473915
+soci-3_0_0-7_fc10:HEAD:soci-3.0.0-7.fc10.src.rpm:1241549903

diff --git a/soci-3.0.0-fix-gcc43-compatibility.patch b/soci-3.0.0-fix-gcc43-compatibility.patch
index e338c41..7122898 100644
--- a/soci-3.0.0-fix-gcc43-compatibility.patch
+++ b/soci-3.0.0-fix-gcc43-compatibility.patch
@@ -45,3 +45,14 @@ diff -u -r soci-3.0.0_ref/src/backends/mysql/vector-use-type.cpp soci-3.0.0_work
 
  #ifdef _MSC_VER
  #pragma warning(disable:4355)
+diff -ru soci-3.0.0/src/core/soci-simple.cpp soci-3.0.0_4-pack/src/core/soci-simple.cpp
+--- soci-3.0.0/src/core/soci-simple.cpp 2008-07-01 09:42:25.000000000 +0200
++++ soci-3.0.0_4-pack/src/core/soci-simple.cpp  2009-05-05 16:17:38.000000000 +0200
+@@ -9,6 +9,7 @@
+
+ #include "soci-simple.h"
+ #include "soci.h"
++#include <cstdio>
+
+ using namespace soci;
+

diff --git a/soci.spec b/soci.spec
index bc81c77..94ce850 100644
--- a/soci.spec
+++ b/soci.spec
@@ -18,7 +18,7 @@
 #
 Name:           soci
 Version:        3.0.0
-Release:        6%{?dist}
+Release:        7%{?dist}
 
 Summary:        The database access library for C++ programmers
 
@@ -275,6 +275,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue May 05 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 3.0.0-7
+- Added a missing cstdio header include for g++-4.4 compatibility
+
 * Sat May 02 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 3.0.0-6
 - Removed the unused build conditionals
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [rpms/soci] update-to-4.1.4: - Added a missing cstdio header include for g++-4.4 compatibility
@ 2026-06-20  4:39 Denis Arnaud
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Arnaud @ 2026-06-20  4:39 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/soci
Branch : update-to-4.1.4
Commit : 83ae9c54db5b40b7b712ea5afab8d05f283cf3b4
Author : Denis Arnaud <denisarnaud@fedoraproject.org>
Date   : 2009-05-05T21:46:02+00:00
Stats  : +93/-74 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/soci/c/83ae9c54db5b40b7b712ea5afab8d05f283cf3b4?branch=update-to-4.1.4

Log:
- Added a missing cstdio header include for g++-4.4 compatibility

---
diff --git a/import.log b/import.log
index 793fb35..ea17d8c 100644
--- a/import.log
+++ b/import.log
@@ -1,3 +1,4 @@
 soci-3_0_0-6_fc10:HEAD:soci-3.0.0-6.fc10.src.rpm:1241473915
 soci-3_0_0-7_fc10:HEAD:soci-3.0.0-7.fc10.src.rpm:1241549903
 soci-3_0_0-8_fc10:HEAD:soci-3.0.0-8.fc10.src.rpm:1241558219
+soci-3_0_0-9_fc10:HEAD:soci-3.0.0-9.fc10.src.rpm:1241559732

diff --git a/soci-3.0.0-fix-gcc43-compatibility.patch b/soci-3.0.0-fix-gcc43-compatibility.patch
index 72960c2..6ca9e89 100644
--- a/soci-3.0.0-fix-gcc43-compatibility.patch
+++ b/soci-3.0.0-fix-gcc43-compatibility.patch
@@ -1,6 +1,6 @@
-diff -ur soci-3.0.0/src/backends/mysql/common.h soci-3.0.0_4-pack/src/backends/mysql/common.h
+diff -ru soci-3.0.0/src/backends/mysql/common.h soci-3.0.0_4-pack/src/backends/mysql/common.h
 --- soci-3.0.0/src/backends/mysql/common.h	2008-07-03 09:22:57.000000000 +0200
-+++ soci-3.0.0_4-pack/src/backends/mysql/common.h	2009-05-05 22:44:49.000000000 +0200
++++ soci-3.0.0_4-pack/src/backends/mysql/common.h	2009-05-05 23:32:22.000000000 +0200
 @@ -10,6 +10,7 @@
  
  #include <sstream>
@@ -9,9 +9,9 @@ diff -ur soci-3.0.0/src/backends/mysql/common.h soci-3.0.0_4-pack/src/backends/m
  
  namespace soci
  {
-diff -ur soci-3.0.0/src/backends/mysql/session.cpp soci-3.0.0_4-pack/src/backends/mysql/session.cpp
+diff -ru soci-3.0.0/src/backends/mysql/session.cpp soci-3.0.0_4-pack/src/backends/mysql/session.cpp
 --- soci-3.0.0/src/backends/mysql/session.cpp	2008-05-15 15:58:38.000000000 +0200
-+++ soci-3.0.0_4-pack/src/backends/mysql/session.cpp	2009-05-05 22:44:49.000000000 +0200
++++ soci-3.0.0_4-pack/src/backends/mysql/session.cpp	2009-05-05 23:32:22.000000000 +0200
 @@ -11,7 +11,8 @@
  #include <cctype>
  #include <cerrno>
@@ -22,9 +22,9 @@ diff -ur soci-3.0.0/src/backends/mysql/session.cpp soci-3.0.0_4-pack/src/backend
  
  #ifdef _MSC_VER
  #pragma warning(disable:4355)
-diff -ur soci-3.0.0/src/backends/mysql/standard-into-type.cpp soci-3.0.0_4-pack/src/backends/mysql/standard-into-type.cpp
+diff -ru soci-3.0.0/src/backends/mysql/standard-into-type.cpp soci-3.0.0_4-pack/src/backends/mysql/standard-into-type.cpp
 --- soci-3.0.0/src/backends/mysql/standard-into-type.cpp	2008-05-30 13:33:45.000000000 +0200
-+++ soci-3.0.0_4-pack/src/backends/mysql/standard-into-type.cpp	2009-05-05 22:44:49.000000000 +0200
++++ soci-3.0.0_4-pack/src/backends/mysql/standard-into-type.cpp	2009-05-05 23:32:22.000000000 +0200
 @@ -12,6 +12,8 @@
  #include "common.h"
  #include <ciso646>
@@ -34,9 +34,9 @@ diff -ur soci-3.0.0/src/backends/mysql/standard-into-type.cpp soci-3.0.0_4-pack/
  
  #ifdef _MSC_VER
  #pragma warning(disable:4355)
-diff -ur soci-3.0.0/src/backends/mysql/standard-use-type.cpp soci-3.0.0_4-pack/src/backends/mysql/standard-use-type.cpp
+diff -ru soci-3.0.0/src/backends/mysql/standard-use-type.cpp soci-3.0.0_4-pack/src/backends/mysql/standard-use-type.cpp
 --- soci-3.0.0/src/backends/mysql/standard-use-type.cpp	2008-05-15 15:58:38.000000000 +0200
-+++ soci-3.0.0_4-pack/src/backends/mysql/standard-use-type.cpp	2009-05-05 22:48:13.000000000 +0200
++++ soci-3.0.0_4-pack/src/backends/mysql/standard-use-type.cpp	2009-05-05 23:32:22.000000000 +0200
 @@ -9,9 +9,16 @@
  #define SOCI_MYSQL_SOURCE
  #include "soci-mysql.h"
@@ -55,9 +55,9 @@ diff -ur soci-3.0.0/src/backends/mysql/standard-use-type.cpp soci-3.0.0_4-pack/s
  #include <cstring>
  
  #ifdef _MSC_VER
-diff -ur soci-3.0.0/src/backends/mysql/vector-use-type.cpp soci-3.0.0_4-pack/src/backends/mysql/vector-use-type.cpp
+diff -ru soci-3.0.0/src/backends/mysql/vector-use-type.cpp soci-3.0.0_4-pack/src/backends/mysql/vector-use-type.cpp
 --- soci-3.0.0/src/backends/mysql/vector-use-type.cpp	2008-05-15 15:58:38.000000000 +0200
-+++ soci-3.0.0_4-pack/src/backends/mysql/vector-use-type.cpp	2009-05-05 22:48:23.000000000 +0200
++++ soci-3.0.0_4-pack/src/backends/mysql/vector-use-type.cpp	2009-05-05 23:32:22.000000000 +0200
 @@ -9,10 +9,18 @@
  #define SOCI_MYSQL_SOURCE
  #include "soci-mysql.h"
@@ -78,9 +78,9 @@ diff -ur soci-3.0.0/src/backends/mysql/vector-use-type.cpp soci-3.0.0_4-pack/src
  
  #ifdef _MSC_VER
  #pragma warning(disable:4355)
-diff -ur soci-3.0.0/src/backends/postgresql/common.cpp soci-3.0.0_4-pack/src/backends/postgresql/common.cpp
+diff -ru soci-3.0.0/src/backends/postgresql/common.cpp soci-3.0.0_4-pack/src/backends/postgresql/common.cpp
 --- soci-3.0.0/src/backends/postgresql/common.cpp	2008-06-27 16:38:05.000000000 +0200
-+++ soci-3.0.0_4-pack/src/backends/postgresql/common.cpp	2009-05-05 22:47:18.000000000 +0200
++++ soci-3.0.0_4-pack/src/backends/postgresql/common.cpp	2009-05-05 23:32:22.000000000 +0200
 @@ -6,8 +6,15 @@
  //
  
@@ -98,3 +98,15 @@ diff -ur soci-3.0.0/src/backends/postgresql/common.cpp soci-3.0.0_4-pack/src/bac
  #include <ctime>
  
  
+diff -ru soci-3.0.0/src/core/soci-simple.cpp soci-3.0.0_4-pack/src/core/soci-simple.cpp
+--- soci-3.0.0/src/core/soci-simple.cpp	2008-07-01 09:42:25.000000000 +0200
++++ soci-3.0.0_4-pack/src/core/soci-simple.cpp	2009-05-05 23:33:57.000000000 +0200
+@@ -9,6 +9,8 @@
+ 
+ #include "soci-simple.h"
+ #include "soci.h"
++//
++#include <cstdio>
+ 
+ using namespace soci;
+ 

diff --git a/soci-3.0.0-fix-gnu-autotools-compatibility.patch b/soci-3.0.0-fix-gnu-autotools-compatibility.patch
index 3d6e5f7..5287e2f 100644
--- a/soci-3.0.0-fix-gnu-autotools-compatibility.patch
+++ b/soci-3.0.0-fix-gnu-autotools-compatibility.patch
@@ -1,6 +1,6 @@
 diff -Nur soci-3.0.0_4-pack/aclocal.m4 soci-3.0.0_trep300/aclocal.m4
 --- soci-3.0.0_4-pack/aclocal.m4	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/aclocal.m4	2009-05-05 22:51:55.000000000 +0200
++++ soci-3.0.0_trep300/aclocal.m4	2009-05-05 23:31:06.000000000 +0200
 @@ -0,0 +1,7512 @@
 +# generated automatically by aclocal 1.10.1 -*- Autoconf -*-
 +
@@ -7540,7 +7540,7 @@ diff -Nur soci-3.0.0_4-pack/build/Makefile.am soci-3.0.0_trep300/build/Makefile.
 +
 diff -Nur soci-3.0.0_4-pack/build/Makefile.in soci-3.0.0_trep300/build/Makefile.in
 --- soci-3.0.0_4-pack/build/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/build/Makefile.in	2009-05-05 22:52:02.000000000 +0200
++++ soci-3.0.0_trep300/build/Makefile.in	2009-05-05 23:31:12.000000000 +0200
 @@ -0,0 +1,535 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -8094,7 +8094,7 @@ diff -Nur soci-3.0.0_4-pack/build/msvc80/dll/Makefile.am soci-3.0.0_trep300/buil
 +	empty_test.vcproj odbc_test_mysql.vcproj oracle.vcproj soci_dll.vsprops
 diff -Nur soci-3.0.0_4-pack/build/msvc80/dll/Makefile.in soci-3.0.0_trep300/build/msvc80/dll/Makefile.in
 --- soci-3.0.0_4-pack/build/msvc80/dll/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/build/msvc80/dll/Makefile.in	2009-05-05 22:52:02.000000000 +0200
++++ soci-3.0.0_trep300/build/msvc80/dll/Makefile.in	2009-05-05 23:31:12.000000000 +0200
 @@ -0,0 +1,383 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -8496,7 +8496,7 @@ diff -Nur soci-3.0.0_4-pack/build/msvc80/lib/Makefile.am soci-3.0.0_trep300/buil
 +	empty_test.vcproj odbc_test_mysql.vcproj oracle.vcproj soci_lib.vsprops
 diff -Nur soci-3.0.0_4-pack/build/msvc80/lib/Makefile.in soci-3.0.0_trep300/build/msvc80/lib/Makefile.in
 --- soci-3.0.0_4-pack/build/msvc80/lib/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/build/msvc80/lib/Makefile.in	2009-05-05 22:52:02.000000000 +0200
++++ soci-3.0.0_trep300/build/msvc80/lib/Makefile.in	2009-05-05 23:31:13.000000000 +0200
 @@ -0,0 +1,383 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -8895,7 +8895,7 @@ diff -Nur soci-3.0.0_4-pack/build/msvc80/Makefile.am soci-3.0.0_trep300/build/ms
 +SUBDIRS = dll lib
 diff -Nur soci-3.0.0_4-pack/build/msvc80/Makefile.in soci-3.0.0_trep300/build/msvc80/Makefile.in
 --- soci-3.0.0_4-pack/build/msvc80/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/build/msvc80/Makefile.in	2009-05-05 22:52:02.000000000 +0200
++++ soci-3.0.0_trep300/build/msvc80/Makefile.in	2009-05-05 23:31:12.000000000 +0200
 @@ -0,0 +1,536 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -9450,7 +9450,7 @@ diff -Nur soci-3.0.0_4-pack/build/unix/Makefile.am soci-3.0.0_trep300/build/unix
 +	$(EXTRA_DIST_FOR_SOCI_COMPATIBILITY)
 diff -Nur soci-3.0.0_4-pack/build/unix/Makefile.in soci-3.0.0_trep300/build/unix/Makefile.in
 --- soci-3.0.0_4-pack/build/unix/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/build/unix/Makefile.in	2009-05-05 22:52:02.000000000 +0200
++++ soci-3.0.0_trep300/build/unix/Makefile.in	2009-05-05 23:31:13.000000000 +0200
 @@ -0,0 +1,383 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -11016,7 +11016,7 @@ diff -Nur soci-3.0.0_4-pack/config/ax_postgresql.m4 soci-3.0.0_trep300/config/ax
 +])
 diff -Nur soci-3.0.0_4-pack/config/config.guess soci-3.0.0_trep300/config/config.guess
 --- soci-3.0.0_4-pack/config/config.guess	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/config/config.guess	2009-05-05 22:52:05.000000000 +0200
++++ soci-3.0.0_trep300/config/config.guess	2009-05-05 23:31:15.000000000 +0200
 @@ -0,0 +1,1526 @@
 +#! /bin/sh
 +# Attempt to guess a canonical system name.
@@ -12546,7 +12546,7 @@ diff -Nur soci-3.0.0_4-pack/config/config.guess soci-3.0.0_trep300/config/config
 +# End:
 diff -Nur soci-3.0.0_4-pack/config/config.sub soci-3.0.0_trep300/config/config.sub
 --- soci-3.0.0_4-pack/config/config.sub	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/config/config.sub	2009-05-05 22:52:05.000000000 +0200
++++ soci-3.0.0_trep300/config/config.sub	2009-05-05 23:31:15.000000000 +0200
 @@ -0,0 +1,1658 @@
 +#! /bin/sh
 +# Configuration validation subroutine script.
@@ -14305,7 +14305,7 @@ diff -Nur soci-3.0.0_4-pack/config/cppunit.m4 soci-3.0.0_trep300/config/cppunit.
 +
 diff -Nur soci-3.0.0_4-pack/config/depcomp soci-3.0.0_trep300/config/depcomp
 --- soci-3.0.0_4-pack/config/depcomp	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/config/depcomp	2009-05-05 22:52:04.000000000 +0200
++++ soci-3.0.0_trep300/config/depcomp	2009-05-05 23:31:14.000000000 +0200
 @@ -0,0 +1,589 @@
 +#! /bin/sh
 +# depcomp - compile a program generating dependencies as side-effects
@@ -14898,7 +14898,7 @@ diff -Nur soci-3.0.0_4-pack/config/depcomp soci-3.0.0_trep300/config/depcomp
 +# End:
 diff -Nur soci-3.0.0_4-pack/config/install-sh soci-3.0.0_trep300/config/install-sh
 --- soci-3.0.0_4-pack/config/install-sh	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/config/install-sh	2009-05-05 22:52:01.000000000 +0200
++++ soci-3.0.0_trep300/config/install-sh	2009-05-05 23:31:12.000000000 +0200
 @@ -0,0 +1,519 @@
 +#!/bin/sh
 +# install - install a program, script, or datafile
@@ -22381,7 +22381,7 @@ diff -Nur soci-3.0.0_4-pack/config/ltmain.sh soci-3.0.0_trep300/config/ltmain.sh
 +# End:
 diff -Nur soci-3.0.0_4-pack/config/missing soci-3.0.0_trep300/config/missing
 --- soci-3.0.0_4-pack/config/missing	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/config/missing	2009-05-05 22:52:01.000000000 +0200
++++ soci-3.0.0_trep300/config/missing	2009-05-05 23:31:12.000000000 +0200
 @@ -0,0 +1,367 @@
 +#! /bin/sh
 +# Common stub for a few missing GNU programs while installing.
@@ -22751,8 +22751,8 @@ diff -Nur soci-3.0.0_4-pack/config/missing soci-3.0.0_trep300/config/missing
 +# time-stamp-end: "$"
 +# End:
 diff -Nur soci-3.0.0_4-pack/configure soci-3.0.0_trep300/configure
---- soci-3.0.0_4-pack/configure	2009-05-05 23:06:26.000000000 +0200
-+++ soci-3.0.0_trep300/configure	2009-05-05 22:51:58.000000000 +0200
+--- soci-3.0.0_4-pack/configure	2009-05-05 23:39:48.000000000 +0200
++++ soci-3.0.0_trep300/configure	2009-05-05 23:31:09.000000000 +0200
 @@ -1,72 +1,25713 @@
 -#!/bin/sh
 +#! /bin/sh
@@ -25612,7 +25612,7 @@ diff -Nur soci-3.0.0_4-pack/configure soci-3.0.0_trep300/configure
 +
 +
 +# RPM release number
-+RPM_RELEASE="8"
++RPM_RELEASE="9"
 +
 +
 +# Shared library versioning
@@ -48531,7 +48531,7 @@ diff -Nur soci-3.0.0_4-pack/configure soci-3.0.0_trep300/configure
 +"
 diff -Nur soci-3.0.0_4-pack/configure.ac soci-3.0.0_trep300/configure.ac
 --- soci-3.0.0_4-pack/configure.ac	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/configure.ac	2009-05-05 22:33:10.000000000 +0200
++++ soci-3.0.0_trep300/configure.ac	2009-05-05 23:30:10.000000000 +0200
 @@ -0,0 +1,400 @@
 +# Process this file with autoconf to produce a configure script
 +#-------------------------------------------------------------------
@@ -48546,7 +48546,7 @@ diff -Nur soci-3.0.0_4-pack/configure.ac soci-3.0.0_trep300/configure.ac
 +AM_CONDITIONAL([HAVE_CPPUNIT], [test "x$CPPUNIT_LIBS" != x])
 +
 +# RPM release number
-+RPM_RELEASE="8"
++RPM_RELEASE="9"
 +AC_SUBST(RPM_RELEASE)
 +
 +# Shared library versioning
@@ -48934,7 +48934,7 @@ diff -Nur soci-3.0.0_4-pack/configure.ac soci-3.0.0_trep300/configure.ac
 +------------------------------------------------------------------------------
 +"
 diff -Nur soci-3.0.0_4-pack/COPYING soci-3.0.0_trep300/COPYING
---- soci-3.0.0_4-pack/COPYING	2009-05-05 23:06:26.000000000 +0200
+--- soci-3.0.0_4-pack/COPYING	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/COPYING	2009-04-16 19:37:10.000000000 +0200
 @@ -21,3 +21,4 @@
  FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
@@ -48963,7 +48963,7 @@ diff -Nur soci-3.0.0_4-pack/doc/backends/Makefile.am soci-3.0.0_trep300/doc/back
 +#pkgdatadir = $(html_bck_sources)
 diff -Nur soci-3.0.0_4-pack/doc/backends/Makefile.in soci-3.0.0_trep300/doc/backends/Makefile.in
 --- soci-3.0.0_4-pack/doc/backends/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/doc/backends/Makefile.in	2009-05-05 22:52:02.000000000 +0200
++++ soci-3.0.0_trep300/doc/backends/Makefile.in	2009-05-05 23:31:13.000000000 +0200
 @@ -0,0 +1,548 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -49537,7 +49537,7 @@ diff -Nur soci-3.0.0_4-pack/doc/Makefile.am soci-3.0.0_trep300/doc/Makefile.am
 +EXTRA_DIST = $(EXTRA_DIST_FOR_SOCI_COMPATIBILITY)
 diff -Nur soci-3.0.0_4-pack/doc/Makefile.in soci-3.0.0_trep300/doc/Makefile.in
 --- soci-3.0.0_4-pack/doc/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/doc/Makefile.in	2009-05-05 22:52:02.000000000 +0200
++++ soci-3.0.0_trep300/doc/Makefile.in	2009-05-05 23:31:13.000000000 +0200
 @@ -0,0 +1,547 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -50105,7 +50105,7 @@ diff -Nur soci-3.0.0_4-pack/doc/sources.mk soci-3.0.0_trep300/doc/sources.mk
 +	$(top_srcdir)/doc/structure.html
 Les fichiers binaires soci-3.0.0_4-pack/doc/structure.png et soci-3.0.0_trep300/doc/structure.png sont différents.
 diff -Nur soci-3.0.0_4-pack/doc/style.css soci-3.0.0_trep300/doc/style.css
---- soci-3.0.0_4-pack/doc/style.css	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/doc/style.css	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/doc/style.css	1970-01-01 01:00:00.000000000 +0100
 @@ -1,90 +0,0 @@
 -body
@@ -50200,7 +50200,7 @@ diff -Nur soci-3.0.0_4-pack/doc/style.css soci-3.0.0_trep300/doc/style.css
 -}
 diff -Nur soci-3.0.0_4-pack/INSTALL soci-3.0.0_trep300/INSTALL
 --- soci-3.0.0_4-pack/INSTALL	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/INSTALL	2009-05-05 22:52:05.000000000 +0200
++++ soci-3.0.0_trep300/INSTALL	2009-05-05 23:31:15.000000000 +0200
 @@ -0,0 +1,237 @@
 +Installation Instructions
 +*************************
@@ -50440,7 +50440,7 @@ diff -Nur soci-3.0.0_4-pack/INSTALL soci-3.0.0_trep300/INSTALL
 +`configure --help' for more details.
 +
 diff -Nur soci-3.0.0_4-pack/Makefile soci-3.0.0_trep300/Makefile
---- soci-3.0.0_4-pack/Makefile	2009-05-05 23:06:26.000000000 +0200
+--- soci-3.0.0_4-pack/Makefile	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/Makefile	1970-01-01 01:00:00.000000000 +0100
 @@ -1,20 +0,0 @@
 -build_libs :
@@ -50537,7 +50537,7 @@ diff -Nur soci-3.0.0_4-pack/Makefile.common soci-3.0.0_trep300/Makefile.common
 +AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir)
 diff -Nur soci-3.0.0_4-pack/Makefile.in soci-3.0.0_trep300/Makefile.in
 --- soci-3.0.0_4-pack/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/Makefile.in	2009-05-05 22:52:05.000000000 +0200
++++ soci-3.0.0_trep300/Makefile.in	2009-05-05 23:31:15.000000000 +0200
 @@ -0,0 +1,797 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -51346,7 +51346,7 @@ diff -Nur soci-3.0.0_4-pack/man/Makefile.am soci-3.0.0_trep300/man/Makefile.am
 +EXTRA_DIST = $(man_MANS)
 diff -Nur soci-3.0.0_4-pack/man/Makefile.in soci-3.0.0_trep300/man/Makefile.in
 --- soci-3.0.0_4-pack/man/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/man/Makefile.in	2009-05-05 22:52:02.000000000 +0200
++++ soci-3.0.0_trep300/man/Makefile.in	2009-05-05 23:31:13.000000000 +0200
 @@ -0,0 +1,430 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -51843,7 +51843,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/Makefile.am soci-3.0.0_trep300/soci/ba
 +EXTRA_DIST =
 diff -Nur soci-3.0.0_4-pack/soci/backends/Makefile.in soci-3.0.0_trep300/soci/backends/Makefile.in
 --- soci-3.0.0_4-pack/soci/backends/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/backends/Makefile.in	2009-05-05 22:52:03.000000000 +0200
++++ soci-3.0.0_trep300/soci/backends/Makefile.in	2009-05-05 23:31:13.000000000 +0200
 @@ -0,0 +1,536 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -52382,7 +52382,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/Makefile.in soci-3.0.0_trep300/soci/ba
 +# Otherwise a system limit (for SysV at least) may be exceeded.
 +.NOEXPORT:
 diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/common.cpp soci-3.0.0_trep300/soci/backends/mysql/common.cpp
---- soci-3.0.0_4-pack/soci/backends/mysql/common.cpp	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/mysql/common.cpp	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/mysql/common.cpp	2009-04-16 19:37:06.000000000 +0200
 @@ -6,7 +6,13 @@
  //
@@ -52430,7 +52430,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/Makefile.am soci-3.0.0_trep300/s
 +endif
 +pkgincludedir = $(soci_include_dir)
 diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/Makefile.basic soci-3.0.0_trep300/soci/backends/mysql/Makefile.basic
---- soci-3.0.0_4-pack/soci/backends/mysql/Makefile.basic	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/mysql/Makefile.basic	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/mysql/Makefile.basic	1970-01-01 01:00:00.000000000 +0100
 @@ -1,97 +0,0 @@
 -# The following variables are specific to this backend and their correct
@@ -52532,7 +52532,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/Makefile.basic soci-3.0.0_trep30
 -	rm -f libsoci_mysql.a libsoci_mysql.so
 diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/Makefile.in soci-3.0.0_trep300/soci/backends/mysql/Makefile.in
 --- soci-3.0.0_4-pack/soci/backends/mysql/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/backends/mysql/Makefile.in	2009-05-05 22:52:03.000000000 +0200
++++ soci-3.0.0_trep300/soci/backends/mysql/Makefile.in	2009-05-05 23:31:13.000000000 +0200
 @@ -0,0 +1,796 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -53331,7 +53331,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/Makefile.in soci-3.0.0_trep300/s
 +# Otherwise a system limit (for SysV at least) may be exceeded.
 +.NOEXPORT:
 diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/soci-mysql.h soci-3.0.0_trep300/soci/backends/mysql/soci-mysql.h
---- soci-3.0.0_4-pack/soci/backends/mysql/soci-mysql.h	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/mysql/soci-mysql.h	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/mysql/soci-mysql.h	2009-04-16 19:37:06.000000000 +0200
 @@ -23,12 +23,23 @@
  #ifndef SOCI_MYSQL_DECL
@@ -53379,7 +53379,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/sources.mk soci-3.0.0_trep300/so
 +        $(top_srcdir)/soci/backends/mysql/vector-into-type.cpp \
 +        $(top_srcdir)/soci/backends/mysql/vector-use-type.cpp
 diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/standard-into-type.cpp soci-3.0.0_trep300/soci/backends/mysql/standard-into-type.cpp
---- soci-3.0.0_4-pack/soci/backends/mysql/standard-into-type.cpp	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/mysql/standard-into-type.cpp	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/mysql/standard-into-type.cpp	2009-04-16 19:37:06.000000000 +0200
 @@ -8,8 +8,14 @@
  
@@ -53420,7 +53420,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/test/Makefile.am soci-3.0.0_trep
 +
 +#nodist_pkginclude_HEADERS = $(mysql_test_h_sources)
 diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/test/Makefile.basic soci-3.0.0_trep300/soci/backends/mysql/test/Makefile.basic
---- soci-3.0.0_4-pack/soci/backends/mysql/test/Makefile.basic	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/mysql/test/Makefile.basic	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/mysql/test/Makefile.basic	1970-01-01 01:00:00.000000000 +0100
 @@ -1,22 +0,0 @@
 -# The following variables are specific to this backend and their correct
@@ -53447,7 +53447,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/test/Makefile.basic soci-3.0.0_t
 -	rm -f test-mysql
 diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/test/Makefile.in soci-3.0.0_trep300/soci/backends/mysql/test/Makefile.in
 --- soci-3.0.0_4-pack/soci/backends/mysql/test/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/backends/mysql/test/Makefile.in	2009-05-05 22:52:03.000000000 +0200
++++ soci-3.0.0_trep300/soci/backends/mysql/test/Makefile.in	2009-05-05 23:31:13.000000000 +0200
 @@ -0,0 +1,513 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -53969,7 +53969,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/test/sources.mk soci-3.0.0_trep3
 +mysql_test_h_sources =
 +mysql_test_cc_sources = $(top_srcdir)/soci/backends/mysql/test/test-mysql.cpp
 diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/test/test-mysql.cpp soci-3.0.0_trep300/soci/backends/mysql/test/test-mysql.cpp
---- soci-3.0.0_4-pack/soci/backends/mysql/test/test-mysql.cpp	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/mysql/test/test-mysql.cpp	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/mysql/test/test-mysql.cpp	2009-04-16 19:37:06.000000000 +0200
 @@ -6,9 +6,17 @@
  // http://www.boost.org/LICENSE_1_0.txt)
@@ -54010,7 +54010,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/test/test-mysql.cpp soci-3.0.0_t
  using namespace soci;
  using namespace soci::tests;
 diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/vector-into-type.cpp soci-3.0.0_trep300/soci/backends/mysql/vector-into-type.cpp
---- soci-3.0.0_4-pack/soci/backends/mysql/vector-into-type.cpp	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/mysql/vector-into-type.cpp	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/mysql/vector-into-type.cpp	2009-04-16 19:37:06.000000000 +0200
 @@ -9,7 +9,13 @@
  #define SOCI_MYSQL_SOURCE
@@ -54028,7 +54028,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/mysql/vector-into-type.cpp soci-3.0.0_
  
  #ifdef _MSC_VER
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/blob.cpp soci-3.0.0_trep300/soci/backends/oracle/blob.cpp
---- soci-3.0.0_4-pack/soci/backends/oracle/blob.cpp	2009-05-05 23:06:26.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/oracle/blob.cpp	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/oracle/blob.cpp	2009-04-16 19:37:06.000000000 +0200
 @@ -7,7 +7,13 @@
  
@@ -54077,7 +54077,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/Makefile.am soci-3.0.0_trep300/
 +endif
 +pkgincludedir = $(soci_include_dir)
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/Makefile.basic soci-3.0.0_trep300/soci/backends/oracle/Makefile.basic
---- soci-3.0.0_4-pack/soci/backends/oracle/Makefile.basic	2009-05-05 23:06:26.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/oracle/Makefile.basic	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/oracle/Makefile.basic	1970-01-01 01:00:00.000000000 +0100
 @@ -1,95 +0,0 @@
 -# The following variable is specific to this backend and its correct
@@ -54177,7 +54177,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/Makefile.basic soci-3.0.0_trep3
 -	rm -f *.o libsoci_oracle.a libsoci_oracle.so
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/Makefile.in soci-3.0.0_trep300/soci/backends/oracle/Makefile.in
 --- soci-3.0.0_4-pack/soci/backends/oracle/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/backends/oracle/Makefile.in	2009-05-05 22:52:04.000000000 +0200
++++ soci-3.0.0_trep300/soci/backends/oracle/Makefile.in	2009-05-05 23:31:14.000000000 +0200
 @@ -0,0 +1,800 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -54980,7 +54980,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/Makefile.in soci-3.0.0_trep300/
 +# Otherwise a system limit (for SysV at least) may be exceeded.
 +.NOEXPORT:
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/soci-oracle.h soci-3.0.0_trep300/soci/backends/oracle/soci-oracle.h
---- soci-3.0.0_4-pack/soci/backends/oracle/soci-oracle.h	2009-05-05 23:06:26.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/oracle/soci-oracle.h	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/oracle/soci-oracle.h	2009-04-16 19:37:06.000000000 +0200
 @@ -22,9 +22,14 @@
  #ifndef SOCI_ORACLE_DECL
@@ -55019,7 +55019,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/sources.mk soci-3.0.0_trep300/s
 +        $(top_srcdir)/soci/backends/oracle/vector-into-type.cpp \
 +        $(top_srcdir)/soci/backends/oracle/vector-use-type.cpp
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/standard-into-type.cpp soci-3.0.0_trep300/soci/backends/oracle/standard-into-type.cpp
---- soci-3.0.0_4-pack/soci/backends/oracle/standard-into-type.cpp	2009-05-05 23:06:26.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/oracle/standard-into-type.cpp	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/oracle/standard-into-type.cpp	2009-04-16 19:37:06.000000000 +0200
 @@ -7,10 +7,18 @@
  
@@ -55044,7 +55044,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/standard-into-type.cpp soci-3.0
  #include <cstdio>
  #include <cstring>
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/standard-use-type.cpp soci-3.0.0_trep300/soci/backends/oracle/standard-use-type.cpp
---- soci-3.0.0_4-pack/soci/backends/oracle/standard-use-type.cpp	2009-05-05 23:06:26.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/oracle/standard-use-type.cpp	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/oracle/standard-use-type.cpp	2009-04-16 19:37:06.000000000 +0200
 @@ -7,10 +7,18 @@
  
@@ -55069,7 +55069,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/standard-use-type.cpp soci-3.0.
  #include <cstdio>
  #include <cstring>
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/statement.cpp soci-3.0.0_trep300/soci/backends/oracle/statement.cpp
---- soci-3.0.0_4-pack/soci/backends/oracle/statement.cpp	2009-05-05 23:06:26.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/oracle/statement.cpp	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/oracle/statement.cpp	2009-04-16 19:37:06.000000000 +0200
 @@ -9,7 +9,13 @@
  
@@ -55113,7 +55113,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/test/Makefile.am soci-3.0.0_tre
 +
 +#nodist_pkginclude_HEADERS = $(oracle_test_h_sources)
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/test/Makefile.basic soci-3.0.0_trep300/soci/backends/oracle/test/Makefile.basic
---- soci-3.0.0_4-pack/soci/backends/oracle/test/Makefile.basic	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/oracle/test/Makefile.basic	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/oracle/test/Makefile.basic	1970-01-01 01:00:00.000000000 +0100
 @@ -1,23 +0,0 @@
 -# The following variable is specific to this backend and its correct
@@ -55141,7 +55141,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/test/Makefile.basic soci-3.0.0_
 -	rm -f *.o test-oracle
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/test/Makefile.in soci-3.0.0_trep300/soci/backends/oracle/test/Makefile.in
 --- soci-3.0.0_4-pack/soci/backends/oracle/test/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/backends/oracle/test/Makefile.in	2009-05-05 22:52:04.000000000 +0200
++++ soci-3.0.0_trep300/soci/backends/oracle/test/Makefile.in	2009-05-05 23:31:14.000000000 +0200
 @@ -0,0 +1,517 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -55667,7 +55667,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/test/sources.mk soci-3.0.0_trep
 +oracle_test_h_sources =
 +oracle_test_cc_sources = $(top_srcdir)/soci/backends/oracle/test/test-oracle.cpp
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/test/test-oracle.cpp soci-3.0.0_trep300/soci/backends/oracle/test/test-oracle.cpp
---- soci-3.0.0_4-pack/soci/backends/oracle/test/test-oracle.cpp	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/oracle/test/test-oracle.cpp	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/oracle/test/test-oracle.cpp	2009-04-16 19:37:06.000000000 +0200
 @@ -5,9 +5,17 @@
  // http://www.boost.org/LICENSE_1_0.txt)
@@ -55691,7 +55691,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/test/test-oracle.cpp soci-3.0.0
  #include <string>
  #include <cassert>
 diff -Nur soci-3.0.0_4-pack/soci/backends/oracle/vector-into-type.cpp soci-3.0.0_trep300/soci/backends/oracle/vector-into-type.cpp
---- soci-3.0.0_4-pack/soci/backends/oracle/vector-into-type.cpp	2009-05-05 23:06:26.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/oracle/vector-into-type.cpp	2009-05-05 23:39:48.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/oracle/vector-into-type.cpp	2009-04-16 19:37:06.000000000 +0200
 @@ -7,8 +7,14 @@
  
@@ -55744,7 +55744,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/Makefile.am soci-3.0.0_trep
 +endif
 +pkgincludedir = $(soci_include_dir)
 diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/Makefile.basic soci-3.0.0_trep300/soci/backends/postgresql/Makefile.basic
---- soci-3.0.0_4-pack/soci/backends/postgresql/Makefile.basic	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/postgresql/Makefile.basic	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/postgresql/Makefile.basic	1970-01-01 01:00:00.000000000 +0100
 @@ -1,95 +0,0 @@
 -# The following variable is specific to this backend and its correct
@@ -55844,7 +55844,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/Makefile.basic soci-3.0.0_t
 -	rm -f libsoci_postgresql.a libsoci_postgresql.so
 diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/Makefile.in soci-3.0.0_trep300/soci/backends/postgresql/Makefile.in
 --- soci-3.0.0_4-pack/soci/backends/postgresql/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/backends/postgresql/Makefile.in	2009-05-05 22:52:04.000000000 +0200
++++ soci-3.0.0_trep300/soci/backends/postgresql/Makefile.in	2009-05-05 23:31:14.000000000 +0200
 @@ -0,0 +1,802 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -56649,7 +56649,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/Makefile.in soci-3.0.0_trep
 +# Otherwise a system limit (for SysV at least) may be exceeded.
 +.NOEXPORT:
 diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/soci-postgresql.h soci-3.0.0_trep300/soci/backends/postgresql/soci-postgresql.h
---- soci-3.0.0_4-pack/soci/backends/postgresql/soci-postgresql.h	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/postgresql/soci-postgresql.h	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/postgresql/soci-postgresql.h	2009-04-16 19:37:05.000000000 +0200
 @@ -22,9 +22,14 @@
  #ifndef SOCI_POSTGRESQL_DECL
@@ -56688,7 +56688,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/sources.mk soci-3.0.0_trep3
 +        $(top_srcdir)/soci/backends/postgresql/vector-into-type.cpp \
 +        $(top_srcdir)/soci/backends/postgresql/vector-use-type.cpp
 diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/standard-into-type.cpp soci-3.0.0_trep300/soci/backends/postgresql/standard-into-type.cpp
---- soci-3.0.0_4-pack/soci/backends/postgresql/standard-into-type.cpp	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/postgresql/standard-into-type.cpp	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/postgresql/standard-into-type.cpp	2009-04-16 19:37:05.000000000 +0200
 @@ -8,9 +8,16 @@
  #define SOCI_POSTGRESQL_SOURCE
@@ -56711,7 +56711,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/standard-into-type.cpp soci
  #include <cstdio>
  #include <cstring>
 diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/standard-use-type.cpp soci-3.0.0_trep300/soci/backends/postgresql/standard-use-type.cpp
---- soci-3.0.0_4-pack/soci/backends/postgresql/standard-use-type.cpp	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/postgresql/standard-use-type.cpp	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/postgresql/standard-use-type.cpp	2009-04-16 19:37:05.000000000 +0200
 @@ -7,8 +7,14 @@
  
@@ -56753,7 +56753,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/test/Makefile.am soci-3.0.0
 +
 +#nodist_pkginclude_HEADERS = $(postgresql_test_h_sources)
 diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/test/Makefile.basic soci-3.0.0_trep300/soci/backends/postgresql/test/Makefile.basic
---- soci-3.0.0_4-pack/soci/backends/postgresql/test/Makefile.basic	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/postgresql/test/Makefile.basic	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/postgresql/test/Makefile.basic	1970-01-01 01:00:00.000000000 +0100
 @@ -1,22 +0,0 @@
 -# The following variable is specific to this backend and its correct
@@ -56780,7 +56780,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/test/Makefile.basic soci-3.
 -	rm -f test-postgresql
 diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/test/Makefile.in soci-3.0.0_trep300/soci/backends/postgresql/test/Makefile.in
 --- soci-3.0.0_4-pack/soci/backends/postgresql/test/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/backends/postgresql/test/Makefile.in	2009-05-05 22:52:04.000000000 +0200
++++ soci-3.0.0_trep300/soci/backends/postgresql/test/Makefile.in	2009-05-05 23:31:14.000000000 +0200
 @@ -0,0 +1,514 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -57303,7 +57303,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/test/sources.mk soci-3.0.0_
 +postgresql_test_h_sources =
 +postgresql_test_cc_sources = $(top_srcdir)/soci/backends/postgresql/test/test-postgresql.cpp
 diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/test/test-postgresql.cpp soci-3.0.0_trep300/soci/backends/postgresql/test/test-postgresql.cpp
---- soci-3.0.0_4-pack/soci/backends/postgresql/test/test-postgresql.cpp	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/backends/postgresql/test/test-postgresql.cpp	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/backends/postgresql/test/test-postgresql.cpp	2009-04-16 19:37:05.000000000 +0200
 @@ -5,9 +5,17 @@
  // http://www.boost.org/LICENSE_1_0.txt)
@@ -57328,7 +57328,7 @@ diff -Nur soci-3.0.0_4-pack/soci/backends/postgresql/test/test-postgresql.cpp so
  #include <string>
 diff -Nur soci-3.0.0_4-pack/soci/config.h.in soci-3.0.0_trep300/soci/config.h.in
 --- soci-3.0.0_4-pack/soci/config.h.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/config.h.in	2009-05-05 22:52:00.000000000 +0200
++++ soci-3.0.0_trep300/soci/config.h.in	2009-05-05 23:31:11.000000000 +0200
 @@ -0,0 +1,142 @@
 +/* soci/config.h.in.  Generated from configure.ac by autoheader.  */
 +
@@ -57505,7 +57505,7 @@ diff -Nur soci-3.0.0_4-pack/soci/core/Makefile.am soci-3.0.0_trep300/soci/core/M
 +endif
 +pkgincludedir = $(soci_include_dir)
 diff -Nur soci-3.0.0_4-pack/soci/core/Makefile.basic soci-3.0.0_trep300/soci/core/Makefile.basic
---- soci-3.0.0_4-pack/soci/core/Makefile.basic	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/core/Makefile.basic	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/core/Makefile.basic	1970-01-01 01:00:00.000000000 +0100
 @@ -1,76 +0,0 @@
 -COMPILER = g++
@@ -57586,7 +57586,7 @@ diff -Nur soci-3.0.0_4-pack/soci/core/Makefile.basic soci-3.0.0_trep300/soci/cor
 -	rm -f libsoci_core.a libsoci_core.so
 diff -Nur soci-3.0.0_4-pack/soci/core/Makefile.in soci-3.0.0_trep300/soci/core/Makefile.in
 --- soci-3.0.0_4-pack/soci/core/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/core/Makefile.in	2009-05-05 22:52:04.000000000 +0200
++++ soci-3.0.0_trep300/soci/core/Makefile.in	2009-05-05 23:31:15.000000000 +0200
 @@ -0,0 +1,894 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -58545,7 +58545,7 @@ diff -Nur soci-3.0.0_4-pack/soci/core/sources.mk soci-3.0.0_trep300/soci/core/so
 +        $(top_srcdir)/soci/core/use-type.cpp \
 +        $(top_srcdir)/soci/core/values.cpp
 diff -Nur soci-3.0.0_4-pack/soci/core/test/common-tests.h soci-3.0.0_trep300/soci/core/test/common-tests.h
---- soci-3.0.0_4-pack/soci/core/test/common-tests.h	2009-05-05 23:06:27.000000000 +0200
+--- soci-3.0.0_4-pack/soci/core/test/common-tests.h	2009-05-05 23:39:49.000000000 +0200
 +++ soci-3.0.0_trep300/soci/core/test/common-tests.h	2009-04-16 19:37:05.000000000 +0200
 @@ -8,14 +8,24 @@
  #ifndef SOCI_COMMON_TESTS_H_INCLUDED
@@ -58598,7 +58598,7 @@ diff -Nur soci-3.0.0_4-pack/soci/core/test/Makefile.am soci-3.0.0_trep300/soci/c
 +#pkgincludedir = $(includedir)/soci/core
 diff -Nur soci-3.0.0_4-pack/soci/core/test/Makefile.in soci-3.0.0_trep300/soci/core/test/Makefile.in
 --- soci-3.0.0_4-pack/soci/core/test/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/core/test/Makefile.in	2009-05-05 22:52:04.000000000 +0200
++++ soci-3.0.0_trep300/soci/core/test/Makefile.in	2009-05-05 23:31:15.000000000 +0200
 @@ -0,0 +1,470 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -59091,7 +59091,7 @@ diff -Nur soci-3.0.0_4-pack/soci/Makefile.am soci-3.0.0_trep300/soci/Makefile.am
 +EXTRA_DIST =
 diff -Nur soci-3.0.0_4-pack/soci/Makefile.in soci-3.0.0_trep300/soci/Makefile.in
 --- soci-3.0.0_4-pack/soci/Makefile.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci/Makefile.in	2009-05-05 22:52:02.000000000 +0200
++++ soci-3.0.0_trep300/soci/Makefile.in	2009-05-05 23:31:13.000000000 +0200
 @@ -0,0 +1,554 @@
 +# Makefile.in generated by automake 1.10.1 from Makefile.am.
 +# @configure_input@
@@ -59866,8 +59866,8 @@ diff -Nur soci-3.0.0_4-pack/soci.pc.in soci-3.0.0_trep300/soci.pc.in
 +Cflags: -I${includedir}
 diff -Nur soci-3.0.0_4-pack/soci.spec.in soci-3.0.0_trep300/soci.spec.in
 --- soci-3.0.0_4-pack/soci.spec.in	1970-01-01 01:00:00.000000000 +0100
-+++ soci-3.0.0_trep300/soci.spec.in	2009-05-05 22:33:42.000000000 +0200
-@@ -0,0 +1,300 @@
++++ soci-3.0.0_trep300/soci.spec.in	2009-05-05 23:30:38.000000000 +0200
+@@ -0,0 +1,303 @@
 +#
 +##
 +# Default values are --with mysql --with postgresql --without oracle 
@@ -60145,6 +60145,9 @@ diff -Nur soci-3.0.0_4-pack/soci.spec.in soci-3.0.0_trep300/soci.spec.in
 +
 +
 +%changelog
++* Tue May 05 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 3.0.0-9
++- Added a missing cstdio header include for g++-4.4 compatibility
++
 +* Tue May 05 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 3.0.0-8
 +- Added missing cstdio header includes for g++-4.4 compatibility
 +

diff --git a/soci.spec b/soci.spec
index 206fc2d..cce035f 100644
--- a/soci.spec
+++ b/soci.spec
@@ -18,7 +18,7 @@
 #
 Name:           soci
 Version:        3.0.0
-Release:        8%{?dist}
+Release:        9%{?dist}
 
 Summary:        The database access library for C++ programmers
 
@@ -275,6 +275,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue May 05 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 3.0.0-9
+- Added a missing cstdio header include for g++-4.4 compatibility
+
 * Tue May 05 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 3.0.0-8
 - Added missing cstdio header includes for g++-4.4 compatibility
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-06-20  4:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-20  4:39 [rpms/soci] update-to-4.1.4: - Added a missing cstdio header include for g++-4.4 compatibility Denis Arnaud
2026-06-20  4:39 Denis Arnaud

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox