mirror of
https://github.com/MariaDB/server.git
synced 2026-05-02 13:15:32 +02:00
Porting fix that allows others to include compiled code with different parsers.
Makes you wonder what I am up to, doesn't?
This commit is contained in:
parent
3d37ec6b8b
commit
78abb2d117
5 changed files with 9 additions and 1 deletions
|
|
@ -236,7 +236,7 @@ AC_PROG_INSTALL
|
|||
test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
|
||||
|
||||
# Not critical since the generated file is distributed
|
||||
AC_PROG_YACC
|
||||
AC_CHECK_PROGS(YACC, ['bison -y -p MYSQL'])
|
||||
AC_CHECK_PROG(PDFMANUAL, pdftex, manual.pdf)
|
||||
AC_CHECK_PROG(DVIS, tex, manual.dvi)
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,8 @@
|
|||
#pragma implementation // gcc: Class implementation
|
||||
#endif
|
||||
|
||||
#define MYSQL_LEX 1
|
||||
|
||||
#include "mysql_priv.h"
|
||||
#include "procedure.h"
|
||||
#include "sql_analyse.h"
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
|
||||
/* A lexical scanner on a temporary buffer with a yacc interface */
|
||||
|
||||
#define MYSQL_LEX 1
|
||||
#include "mysql_priv.h"
|
||||
#include "item_create.h"
|
||||
#include <m_ctype.h>
|
||||
|
|
|
|||
|
|
@ -37,8 +37,12 @@ class sp_pcontext;
|
|||
#define LEX_YYSTYPE void *
|
||||
#else
|
||||
#include "lex_symbol.h"
|
||||
#if MYSQL_LEX
|
||||
#include "sql_yacc.h"
|
||||
#define LEX_YYSTYPE YYSTYPE *
|
||||
#else
|
||||
#define LEX_YYSTYPE void *
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
||||
|
||||
#define MYSQL_LEX 1
|
||||
#include "mysql_priv.h"
|
||||
#include "sql_repl.h"
|
||||
#include "repl_failsafe.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue