mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
automerge
This commit is contained in:
@@ -13,7 +13,7 @@
|
|||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
CMAKE_MINIMUM_REQUIRED(VERSION 2.4.7 FATAL_ERROR)
|
CMAKE_MINIMUM_REQUIRED(VERSION 2.6 FATAL_ERROR)
|
||||||
|
|
||||||
PROJECT(MySql)
|
PROJECT(MySql)
|
||||||
|
|
||||||
|
@@ -17,15 +17,6 @@
|
|||||||
|
|
||||||
#define BIG_TABLES
|
#define BIG_TABLES
|
||||||
|
|
||||||
#ifdef __WIN2000__
|
|
||||||
/* We have to do this define before including windows.h to get the AWE API
|
|
||||||
functions */
|
|
||||||
#define _WIN32_WINNT 0x0500
|
|
||||||
#else
|
|
||||||
/* Get NT 4.0 functions */
|
|
||||||
#define _WIN32_WINNT 0x0400
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(_MSC_VER) && _MSC_VER >= 1400
|
#if defined(_MSC_VER) && _MSC_VER >= 1400
|
||||||
/* Avoid endless warnings about sprintf() etc. being unsafe. */
|
/* Avoid endless warnings about sprintf() etc. being unsafe. */
|
||||||
#define _CRT_SECURE_NO_DEPRECATE 1
|
#define _CRT_SECURE_NO_DEPRECATE 1
|
||||||
|
@@ -47,6 +47,12 @@
|
|||||||
#include <myisam.h>
|
#include <myisam.h>
|
||||||
#include <myisammrg.h>
|
#include <myisammrg.h>
|
||||||
|
|
||||||
|
/* this is to get the bison compilation windows warnings out */
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
/* warning C4065: switch statement contains 'default' but no 'case' labels */
|
||||||
|
#pragma warning (disable : 4065)
|
||||||
|
#endif
|
||||||
|
|
||||||
int yylex(void *yylval, void *yythd);
|
int yylex(void *yylval, void *yythd);
|
||||||
|
|
||||||
const LEX_STRING null_lex_str= {0,0};
|
const LEX_STRING null_lex_str= {0,0};
|
||||||
|
Reference in New Issue
Block a user