📄 ha_tina.m4
字号:
dnl ---------------------------------------------------------------------------dnl Macro: MYSQL_CHECK_CSVDBdnl Sets HAVE_CSV_DB if --with-csv-storage-engine is useddnl ---------------------------------------------------------------------------AC_DEFUN([MYSQL_CHECK_CSVDB], [ AC_ARG_WITH([csv-storage-engine], [ --with-csv-storage-engine Enable the CSV Storage Engine], [csvdb="$withval"], [csvdb=no]) AC_MSG_CHECKING([for csv storage engine]) case "$csvdb" in yes ) AC_DEFINE([HAVE_CSV_DB], [1], [Builds the CSV Storage Engine]) AC_MSG_RESULT([yes]) [csvdb=yes] ;; * ) AC_MSG_RESULT([no]) [csvdb=no] ;; esac])dnl ---------------------------------------------------------------------------dnl END OF MYSQL_CHECK_CSV SECTIONdnl ---------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -