Author: timbo
Date: Tue May 27 05:27:14 2008
New Revision: 11330

Modified:
   dbi/trunk/Changes
   dbi/trunk/Driver.xst
   dbi/trunk/dbixs_rev.h

Log:
Fixed dbixs_revision code in Driver.xst template.
Added note re DBIS fix to Changes.


Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes   (original)
+++ dbi/trunk/Changes   Tue May 27 05:27:14 2008
@@ -58,6 +58,8 @@
 
 Add note about _concat_hash_sorted once integrated
 
+  Fixed problem with DBIS macro with threads on big-endian machines
+    with 64bit ints but 32bit pointers. Ticket #32309.
   Fixed the selectall_arrayref, selectrow_arrayref, and selectrow_array
     methods that get embedded into compiled drivers to use the
     inner sth handle when passed a $sth instead of an sql string.

Modified: dbi/trunk/Driver.xst
==============================================================================
--- dbi/trunk/Driver.xst        (original)
+++ dbi/trunk/Driver.xst        Tue May 27 05:27:14 2008
@@ -33,7 +33,7 @@
 void
 dbixs_revision(...)
     PPCODE:
-    ST(0) = sv_2mortal(newIV(DBIXS_REVISION));
+    ST(0) = sv_2mortal(newSViv(DBIXS_REVISION));
 
 
 #ifdef dbd_discon_all

Modified: dbi/trunk/dbixs_rev.h
==============================================================================
--- dbi/trunk/dbixs_rev.h       (original)
+++ dbi/trunk/dbixs_rev.h       Tue May 27 05:27:14 2008
@@ -1,4 +1,3 @@
-/* Tue May 27 13:18:10 2008 */
-/* Mixed revision working copy (10993M:11328) */
-/* Code modified since last checkin */
-#define DBIXS_REVISION 10993
+/* Tue May 27 13:21:53 2008 */
+/* Mixed revision working copy (11328:11329) */
+#define DBIXS_REVISION 11328

Reply via email to