aboutsummaryrefslogtreecommitdiff
path: root/databases/libgda3/files
diff options
context:
space:
mode:
Diffstat (limited to 'databases/libgda3/files')
-rw-r--r--databases/libgda3/files/patch-aa8
-rw-r--r--databases/libgda3/files/patch-doc::libgda-C.omf.in11
-rw-r--r--databases/libgda3/files/patch-libgda-2.0.pc.in (renamed from databases/libgda3/files/patch-libgda.pc.in)4
-rw-r--r--databases/libgda3/files/patch-providers_mysql_gda-mysql-recordset.c11
4 files changed, 6 insertions, 28 deletions
diff --git a/databases/libgda3/files/patch-aa b/databases/libgda3/files/patch-aa
index 3b1f992512cd..283a9d65994a 100644
--- a/databases/libgda3/files/patch-aa
+++ b/databases/libgda3/files/patch-aa
@@ -1,9 +1,9 @@
---- Makefile.in.orig Fri Jan 16 23:06:50 2004
-+++ Makefile.in Fri Jan 16 23:07:18 2004
-@@ -276,7 +276,6 @@
- providers \
+--- Makefile.in.orig Thu Oct 13 15:37:21 2005
++++ Makefile.in Thu Oct 13 15:37:38 2005
+@@ -345,7 +345,6 @@
report \
tools \
+ gda-sharp \
- testing \
data \
doc
diff --git a/databases/libgda3/files/patch-doc::libgda-C.omf.in b/databases/libgda3/files/patch-doc::libgda-C.omf.in
index f98b540c5562..e69de29bb2d1 100644
--- a/databases/libgda3/files/patch-doc::libgda-C.omf.in
+++ b/databases/libgda3/files/patch-doc::libgda-C.omf.in
@@ -1,11 +0,0 @@
---- doc/libgda-C.omf.in.orig Mon Feb 28 05:30:59 2005
-+++ doc/libgda-C.omf.in Thu Mar 3 14:07:24 2005
-@@ -16,7 +16,7 @@
- </description>
- <type>user's guide</type>
- <format mime="text/html"/>
-- <identifier url="file:@prefix@/share/gtk-doc/html/libgda/index.html"/>
-+ <identifier url="file:@prefix@/share/doc/libgda/index.html"/>
- <language code="C"/>
- <relation seriesid="ebe4f574-a94d-11d6-8bc3-bd1f202a92f8"/>
- <rights type="GNU FDL" license.version="1.1"/>
diff --git a/databases/libgda3/files/patch-libgda.pc.in b/databases/libgda3/files/patch-libgda-2.0.pc.in
index f9bd3aaed056..4e4c405698b4 100644
--- a/databases/libgda3/files/patch-libgda.pc.in
+++ b/databases/libgda3/files/patch-libgda-2.0.pc.in
@@ -1,5 +1,5 @@
---- libgda.pc.in.orig Fri Oct 31 21:59:33 2003
-+++ libgda.pc.in Fri Oct 31 22:00:52 2003
+--- libgda-2.0.pc.in.orig Fri Oct 31 21:59:33 2003
++++ libgda-2.0.pc.in Fri Oct 31 22:00:52 2003
@@ -5,7 +5,7 @@
Name: libgda
diff --git a/databases/libgda3/files/patch-providers_mysql_gda-mysql-recordset.c b/databases/libgda3/files/patch-providers_mysql_gda-mysql-recordset.c
deleted file mode 100644
index f75b3284d3f2..000000000000
--- a/databases/libgda3/files/patch-providers_mysql_gda-mysql-recordset.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- providers/mysql/gda-mysql-recordset.c.orig Wed May 18 03:10:04 2005
-+++ providers/mysql/gda-mysql-recordset.c Tue Jun 14 23:12:25 2005
-@@ -71,7 +71,7 @@ fill_gda_value (GdaValue *gda_value, enu
- if (is_unsigned) {
- gda_value_set_biguint (gda_value, strtoull (value, NULL, 0));
- } else {
-- gda_value_set_bigint (gda_value, atoll (value));
-+ gda_value_set_bigint (gda_value, strtoll (value, NULL, 10));
- }
- break;
- case FIELD_TYPE_SHORT :