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