From 20f76540a18bff01350edb5878ab5015bd194055 Mon Sep 17 00:00:00 2001 From: Jonathan Perkin Date: Tue, 31 Mar 2009 16:04:02 +0200 Subject: [PATCH 1/3] Apply 64-bit fix from Azundris. --- mysys/safemalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysys/safemalloc.c b/mysys/safemalloc.c index 36d07b475e9..c484f1d4c54 100644 --- a/mysys/safemalloc.c +++ b/mysys/safemalloc.c @@ -174,7 +174,7 @@ void *_mymalloc(size_t size, const char *filename, uint lineno, myf MyFlags) data[size + 3]= MAGICEND3; irem->filename= (char *) filename; irem->linenum= lineno; - irem->datasize= (uint32) size; + irem->datasize= size; irem->prev= NULL; /* Add this remember structure to the linked list */ From d434e1269bf3553c0b7e17d917b1e8c8e2d236d5 Mon Sep 17 00:00:00 2001 From: MySQL Build Team Date: Wed, 1 Apr 2009 22:18:49 +0200 Subject: [PATCH 2/3] Add new headers to noinst_HEADERS (ibmdb2i storage engine) --- storage/ibmdb2i/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/storage/ibmdb2i/Makefile.am b/storage/ibmdb2i/Makefile.am index 2436a764429..768ca15f4cf 100644 --- a/storage/ibmdb2i/Makefile.am +++ b/storage/ibmdb2i/Makefile.am @@ -27,6 +27,7 @@ DEFS = @DEFS@ noinst_HEADERS = ha_ibmdb2i.h db2i_collationSupport.h db2i_file.h \ db2i_ioBuffers.h db2i_blobCollection.h \ db2i_global.h db2i_misc.h db2i_charsetSupport.h db2i_errors.h \ + db2i_iconv.h db2i_myconv.h db2i_safeString.h db2i_sqlStatementStream.h \ db2i_ileBridge.h db2i_validatedPointer.h EXTRA_LTLIBRARIES = ha_ibmdb2i.la From 0e531e8bb9ed11401df600aa3744dc25932224ff Mon Sep 17 00:00:00 2001 From: Jonathan Perkin Date: Thu, 2 Apr 2009 13:17:38 +0200 Subject: [PATCH 3/3] Apply http://lists.mysql.com/commits/70427 to fix Win32 builds with VS 2005. --- include/config-win.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/config-win.h b/include/config-win.h index 26b08a5e4fb..3a21551ebbb 100644 --- a/include/config-win.h +++ b/include/config-win.h @@ -63,9 +63,6 @@ functions */ #endif #ifndef __WIN32__ #define __WIN32__ -#define _INTEGRAL_MAX_BITS 32 -#else -#define _INTEGRAL_MAX_BITS 64 #endif #endif /* _WIN64 */ #ifndef __WIN__