You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
896 B
21 lines
896 B
15 years ago
|
# disabled
|
||
|
#AC_ARG_ENABLE(kexi-reports,
|
||
|
# AC_HELP_STRING([--enable-kexi-reports],
|
||
|
# [build Kexi reports plugin (EXPERIMENTAL) [default=no]]),
|
||
|
# compile_kexi_reports_plugin=$enableval, compile_kexi_reports_plugin=no)
|
||
|
#AM_CONDITIONAL(compile_kexi_reports_plugin, test "x$compile_kexi_reports_plugin" != "xno")
|
||
|
#
|
||
|
#if test "$compile_kexi_reports_plugin" == "yes"; then
|
||
|
# AC_DEFINE(KEXI_REPORTS_SUPPORT, 1, [build Kexi reports plugin])
|
||
|
#fi
|
||
|
|
||
|
AC_ARG_ENABLE(kexi-macros,
|
||
|
AC_HELP_STRING([--enable-kexi-macros],
|
||
|
[build Kexi macro plugin (EXPERIMENTAL) [default=yes]]),
|
||
|
compile_kexi_macros_plugin=$enableval, compile_kexi_macros_plugin=no)
|
||
|
AM_CONDITIONAL(compile_kexi_macros_plugin, test "x$compile_kexi_macros_plugin" == "xyes")
|
||
|
|
||
|
if test "$compile_kexi_macros_plugin" == "yes"; then
|
||
|
AC_DEFINE(KEXI_MACROS_SUPPORT, 1, [build Kexi macros plugin])
|
||
|
fi
|