Your message dated Sun, 22 Oct 2006 21:43:20 +0100
with message-id <[EMAIL PROTECTED]>
has caused the Debian Bug report #326756,
regarding libccscript3: FTBFS (amd64): cannot convert 'long int*' to
'SQLINTEGER*' for argument '2' to 'SQLRETURN SQLRowCount(void*, SQLINTEGER*)'
to be marked as having been forwarded to the upstream software
author(s) David Sugar <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
David,
Find enclosed a patch to fix a build problem for libccscript3 on amd64.
http://bugs.debian.org/365518
Mark
---------- Forwarded Message ----------
Subject: libccscript3_1.0.8-1(amd64/unstable): FTBFS
Date: Saturday 10 June 2006 19:34
From:
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
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
--- End Message ---