mirror of
https://github.com/troglobit/editline.git
synced 2025-05-05 20:11:12 +08:00
configure.ac: add second parameter quoting around the rest of AS_IF for consistency
This commit is contained in:
parent
f444a316f5
commit
2b788be1c8
24
configure.ac
24
configure.ac
@ -68,23 +68,23 @@ AC_ARG_ENABLE([examples],
|
|||||||
#
|
#
|
||||||
# Check what features have been enabled
|
# Check what features have been enabled
|
||||||
#
|
#
|
||||||
AS_IF([test "x$enable_unique_history" != "xno"],
|
AS_IF([test "x$enable_unique_history" != "xno"], [
|
||||||
AC_DEFINE(CONFIG_UNIQUE_HISTORY, 1, [Define to skip duplicate lines in the scrollback history.]))
|
AC_DEFINE(CONFIG_UNIQUE_HISTORY, 1, [Define to skip duplicate lines in the scrollback history.])])
|
||||||
|
|
||||||
AS_IF([test "x$enable_terminal_bell" != "xno"],
|
AS_IF([test "x$enable_terminal_bell" != "xno"], [
|
||||||
AC_DEFINE(CONFIG_ANSI_ARROWS, 1, [Define to include ANSI arrow keys support.]))
|
AC_DEFINE(CONFIG_ANSI_ARROWS, 1, [Define to include ANSI arrow keys support.])])
|
||||||
|
|
||||||
AS_IF([test "x$enable_eof" != "xno"],
|
AS_IF([test "x$enable_eof" != "xno"], [
|
||||||
AC_DEFINE(CONFIG_EOF, 1, [Define to enable EOF (Ctrl-D) key.]))
|
AC_DEFINE(CONFIG_EOF, 1, [Define to enable EOF (Ctrl-D) key.])])
|
||||||
|
|
||||||
AS_IF([test "x$enable_sigint" != "xno"],
|
AS_IF([test "x$enable_sigint" != "xno"], [
|
||||||
AC_DEFINE(CONFIG_SIGINT, 1, [Define to enable SIGINT (Ctrl-C) key.]))
|
AC_DEFINE(CONFIG_SIGINT, 1, [Define to enable SIGINT (Ctrl-C) key.])])
|
||||||
|
|
||||||
AS_IF([test "x$enable_sigstop" = "xyes"],
|
AS_IF([test "x$enable_sigstop" = "xyes"], [
|
||||||
AC_DEFINE(CONFIG_SIGSTOP, 1, [Define to enable SIGSTOP (Ctrl-Z) key.]))
|
AC_DEFINE(CONFIG_SIGSTOP, 1, [Define to enable SIGSTOP (Ctrl-Z) key.])])
|
||||||
|
|
||||||
AS_IF([test "x$enable_terminal_bell" = "xyes"],
|
AS_IF([test "x$enable_terminal_bell" = "xyes"], [
|
||||||
AC_DEFINE(CONFIG_TERMINAL_BELL, 1, [Define to enable terminal bell on completion.]))
|
AC_DEFINE(CONFIG_TERMINAL_BELL, 1, [Define to enable terminal bell on completion.])])
|
||||||
|
|
||||||
AM_CONDITIONAL([ENABLE_EXAMPLES], [test "$enable_examples" = yes])
|
AM_CONDITIONAL([ENABLE_EXAMPLES], [test "$enable_examples" = yes])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user