diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-02-06 14:17:52 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-02-06 14:17:52 -0500 |
commit | 7d0b71f6a3f0e714da5a5c43e52408e27f44c383 (patch) | |
tree | 2a75a69e26ae109675ec2c1234e1a3f148e3e66c | |
parent | ab0b722b0719e3370a21359e4d511af9c4f14e60 (diff) |
configure: Fix HAVE_INOTIFY conditional.
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 2a80cdf..da381d3 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,6 @@ AM_CONDITIONAL([HAVE_GUILE_READER], [test "x$have_guile_reader" = "xyes"]) GUILE_MODULE_AVAILABLE([have_guile_commonmark], [(commonmark)]) AM_CONDITIONAL([HAVE_GUILE_COMMONMARK], [test "x$have_guile_commonmark" = "xyes"]) -AC_CHECK_FUNCS(inotify_init) -AM_CONDITIONAL([HAVE_INOTIFY], [test "x$HAVE_INOTIFY_INIT" = "xyes"]) +AC_CHECK_FUNC([inotify_init], [AM_CONDITIONAL(HAVE_INOTIFY, true)], [AM_CONDITIONAL(HAVE_INOTIFY, false)]) AC_OUTPUT |