diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..bd2d71f --- /dev/null +++ b/configure.ac @@ -0,0 +1,11 @@ +AC_PREREQ([2.69]) +AC_INIT([cc-cedict], [0.1], [runciter@whispers-vpn.org]) +AM_INIT_AUTOMAKE([]) + +AC_CHECK_PROG([dictfmt_found],[dictfmt],[yes],[no]) + +AM_CONDITIONAL([FND_DF], [test "x$dictfmt_found" = xyes]) +AM_COND_IF([FND_DF],,[AC_MSG_ERROR([required program 'dictfmt' not found.])]) + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT |