Browse Source
Merge with 5.1
Merge with 5.1
Fixed a couple of compilation failures that was not detected before merge.pull/843/head
75 changed files with 237 additions and 234 deletions
-
2client/Makefile.am
-
2include/my_dbug.h
-
2libmysql/Makefile.am
-
1libmysql/Makefile.shared
-
30storage/maria/ma_bitmap.c
-
7storage/maria/ma_blockrec.c
-
67storage/maria/ma_pagecache.c
-
19storage/maria/ma_recovery.c
-
21storage/maria/maria_chk.c
-
2storage/maria/maria_def.h
-
3strings/bchange.c
-
3strings/bcmp.c
-
3strings/bfill.c
-
3strings/bmove.c
-
3strings/bmove512.c
-
3strings/bmove_upp.c
-
5strings/conf_to_src.c
-
5strings/ctype-big5.c
-
5strings/ctype-bin.c
-
5strings/ctype-cp932.c
-
8strings/ctype-czech.c
-
5strings/ctype-euc_kr.c
-
5strings/ctype-eucjpms.c
-
2strings/ctype-extra.c
-
5strings/ctype-gb2312.c
-
5strings/ctype-gbk.c
-
5strings/ctype-latin1.c
-
5strings/ctype-mb.c
-
5strings/ctype-simple.c
-
5strings/ctype-sjis.c
-
7strings/ctype-tis620.c
-
6strings/ctype-uca.c
-
6strings/ctype-ucs2.c
-
5strings/ctype-ujis.c
-
6strings/ctype-utf8.c
-
5strings/ctype-win1250ch.c
-
6strings/ctype.c
-
3strings/decimal.c
-
3strings/do_ctype.c
-
3strings/int2str.c
-
3strings/is_prefix.c
-
3strings/llstr.c
-
3strings/longlong2str.c
-
3strings/longlong2str_asm.c
-
5strings/my_strchr.c
-
3strings/my_strtoll10.c
-
5strings/my_vsnprintf.c
-
3strings/r_strinstr.c
-
5strings/str2int.c
-
3strings/str_alloc.c
-
37strings/str_test.c
-
3strings/strappend.c
-
3strings/strcend.c
-
3strings/strcont.c
-
3strings/strend.c
-
3strings/strfill.c
-
31strings/strings_def.h
-
3strings/strinstr.c
-
3strings/strmake.c
-
3strings/strmov.c
-
3strings/strmov_overlapp.c
-
3strings/strnlen.c
-
3strings/strnmov.c
-
3strings/strstr.c
-
2strings/strto.c
-
2strings/strtod.c
-
3strings/strtol.c
-
3strings/strtoll.c
-
3strings/strtoul.c
-
3strings/strtoull.c
-
3strings/strxmov.c
-
3strings/strxnmov.c
-
13strings/uctypedump.c
-
2strings/udiv.c
-
3strings/xml.c
@ -0,0 +1,31 @@ |
|||
/* Copyright (C) 2011 Monty Program Ab |
|||
|
|||
This program is free software; you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation; version 2 of the License. |
|||
|
|||
This program is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License |
|||
along with this program; if not, write to the Free Software |
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ |
|||
|
|||
/* This file is to be include first in all files in the string directory */ |
|||
|
|||
#include <my_global.h> /* Define standar vars */ |
|||
#include "m_string.h" /* Exernal defintions of string functions */ |
|||
|
|||
/* |
|||
We can't use the original DBUG_ASSERT() (which includes _db_flush()) |
|||
in the strings library as libdbug is compiled after the the strings |
|||
library and we don't want to have strings depending on libdbug which |
|||
depends on mysys and strings. |
|||
*/ |
|||
|
|||
#if !defined(DBUG_OFF) |
|||
#undef DBUG_ASSERT |
|||
#define DBUG_ASSERT(A) assert(A) |
|||
#endif |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue