tags 365518 + patch
thanks
Hi,
attached is the NMU patch fixing the FTBFS. It was checked against
amd64 and powerpc.
Regards,
Thomas
diff -u libccscript3-1.0.9/debian/changelog libccscript3-1.0.9/debian/changelog
--- libccscript3-1.0.9/debian/changelog
+++ libccscript3-1.0.9/debian/changelog
@@ -1,3 +1,10 @@
+libccscript3 (1.0.9-1.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Use the right type for row count. Closes: 365518.
+
+ -- Thomas Girard <[EMAIL PROTECTED]> Sat, 10 Jun 2006 15:19:49 +0200
+
libccscript3 (1.0.9-1) unstable; urgency=low
* New upstream release
only in patch2:
unchanged:
--- libccscript3-1.0.9.orig/optional/odbc/thread.cpp
+++ libccscript3-1.0.9/optional/odbc/thread.cpp
@@ -63,8 +63,8 @@
SQLCHAR stat[10];
SQLCHAR errmsg[128];
SQLSMALLINT mlen, col, cols;
-#if ODBCVER >= 0x0300 && !defined(__ppc__)
- SQLINTEGER rowcnt;
+#if ODBCVER >= 0x0300
+ SQLLEN rowcnt;
#else
long int rowcnt;
#endif