summaryrefslogtreecommitdiffstats
path: root/kttsd/plugins/epos/configure.in.in
blob: 5a0f655b6fb8788352fd770301b2189d6e6af6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
dnl =========================================
dnl checks for Festival Lite (epos)  Plug In
dnl =========================================

AC_ARG_ENABLE(kttsd-epos,
              AC_HELP_STRING([--enable-kttsd-epos],
                             [build KTTSD Epos plugin [default=yes]]),
              epos_plugin=$enableval,
              epos_plugin=yes)

compile_epos_plugin="yes"

if test "x$epos_plugin" = "xno"; then
  compile_epos_plugin="no"
fi

dnl Check for epos executable.
dnl Note that epos plugin is always built, unless
dnl user overrides on configure command line.
AC_PATH_PROG(epos_bindir, "epos", "no")

AM_CONDITIONAL(include_kttsd_epos, test "x$compile_epos_plugin" != "xno")