mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
623c733895
Would you believe that I wrote all of this on a Mac? I just happen to be not using HFS for the partition I did this work on. Oops :) config/ac-macros/alloca.m4: mvdir config/ac-macros/character_sets.m4: mvdir config/ac-macros/check_cpu.m4: mvdir config/ac-macros/compiler_flag.m4: mvdir config/ac-macros/ha_archive.m4: mvdir config/ac-macros/ha_berkeley.m4: mvdir config/ac-macros/ha_example.m4: mvdir config/ac-macros/ha_innodb.m4: mvdir config/ac-macros/ha_isam.m4: mvdir config/ac-macros/ha_ndbcluster.m4: mvdir config/ac-macros/ha_tina.m4: mvdir config/ac-macros/large_file.m4: mvdir config/ac-macros/misc.m4: mvdir config/ac-macros/mysqlfs.m4: mvdir config/ac-macros/openssl.m4: mvdir config/ac-macros/readline.m4: mvdir config/ac-macros/sanity.m4: mvdir config/ac-macros/zlib.m4: mvdir configure.in: Fix silly little problem with case insensitive filesystems. Funny thing is that I wrote all this on a Mac, but I don't use HFS on that partition so I never noticed that it would be an issue. Oops :)
61 lines
1.7 KiB
Text
61 lines
1.7 KiB
Text
AC_DEFUN([MYSQL_CHECK_READLINE_DECLARES_HIST_ENTRY], [
|
|
AC_CACHE_CHECK([HIST_ENTRY is declared in readline/readline.h], mysql_cv_hist_entry_declared,
|
|
AC_TRY_COMPILE(
|
|
[
|
|
#include "stdio.h"
|
|
#include "readline/readline.h"
|
|
],
|
|
[
|
|
HIST_ENTRY entry;
|
|
],
|
|
[
|
|
mysql_cv_hist_entry_declared=yes
|
|
AC_DEFINE_UNQUOTED(HAVE_HIST_ENTRY, [1],
|
|
[HIST_ENTRY is defined in the outer libeditreadline])
|
|
],
|
|
[mysql_cv_libedit_interface=no]
|
|
)
|
|
)
|
|
])
|
|
|
|
AC_DEFUN([MYSQL_CHECK_LIBEDIT_INTERFACE], [
|
|
AC_CACHE_CHECK([libedit variant of rl_completion_entry_function], mysql_cv_libedit_interface,
|
|
AC_TRY_COMPILE(
|
|
[
|
|
#include "stdio.h"
|
|
#include "readline/readline.h"
|
|
],
|
|
[
|
|
char res= *(*rl_completion_entry_function)(0,0);
|
|
completion_matches(0,0);
|
|
],
|
|
[
|
|
mysql_cv_libedit_interface=yes
|
|
AC_DEFINE_UNQUOTED([USE_LIBEDIT_INTERFACE], [1],
|
|
[used libedit interface (can we dereference result of rl_completion_entry_function)])
|
|
],
|
|
[mysql_cv_libedit_interface=no]
|
|
)
|
|
)
|
|
])
|
|
|
|
AC_DEFUN([MYSQL_CHECK_NEW_RL_INTERFACE], [
|
|
AC_CACHE_CHECK([defined rl_compentry_func_t and rl_completion_func_t], mysql_cv_new_rl_interface,
|
|
AC_TRY_COMPILE(
|
|
[
|
|
#include "stdio.h"
|
|
#include "readline/readline.h"
|
|
],
|
|
[
|
|
rl_completion_func_t *func1= (rl_completion_func_t*)0;
|
|
rl_compentry_func_t *func2= (rl_compentry_func_t*)0;
|
|
],
|
|
[
|
|
mysql_cv_new_rl_interface=yes
|
|
AC_DEFINE_UNQUOTED([USE_NEW_READLINE_INTERFACE], [1],
|
|
[used new readline interface (are rl_completion_func_t and rl_compentry_func_t defined)])
|
|
],
|
|
[mysql_cv_new_rl_interface=no]
|
|
)
|
|
)
|
|
])
|