diff options
author | unknown <sasha@mysql.sashanet.com> | 2002-03-02 12:45:44 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2002-03-02 12:45:44 -0700 |
commit | 7e1edb01dbb4756c88f9c93f188f03eb8d11142c (patch) | |
tree | 99e834e2590a4246f2141adfa908a6f92809b04b /configure.in | |
parent | 3eb9c0be7df702a8af47daa2d01929704d8a41c9 (diff) | |
download | mariadb-git-7e1edb01dbb4756c88f9c93f188f03eb8d11142c.tar.gz |
load local fix
overrun sentry in my_vsnprintf() test
will not be pushed yet
BUILD/FINISH.sh:
load local fix
BUILD/SETUP.sh:
load local fix
BUILD/compile-pentium-debug-max:
load local fix
configure.in:
load local fix
mysys/my_vsnprintf.c:
added overrun sentry to the test
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in index b93940c66ca..8c6249319fd 100644 --- a/configure.in +++ b/configure.in @@ -606,10 +606,13 @@ AC_SUBST(MYSQLD_USER) AC_ARG_ENABLE(local-infile, [ --enable-local-infile If LOAD DATA LOCAL INFILE is enabled by default.], - [ ENABLED_LOCAL_INFILE=$enablewal ], + [ + ENABLED_LOCAL_INFILE=$enablewal + AC_DEFINE(ENABLED_LOCAL_INFILE) + ], [ ENABLED_LOCAL_INFILE=no ] ) - + # Use Paul Eggerts macros from GNU tar to check for large file support. MYSQL_SYS_LARGEFILE |