1 --- configure.ac.old 2007-02-24 23:09:08.000000000 +0100
2 +++ configure.ac 2007-02-24 23:13:15.000000000 +0100
7 +dnl List of plugins to build
8 +build_input_plugins=""
9 +build_actor_plugins=""
10 +build_morph_plugins=""
13 +AC_ARG_ENABLE([esd], AS_HELP_STRING([--disable-esd],
14 + [Do not build esound input plugin @<:@default=enabled@:>@]),
15 + [ENABLE_INPUT_ESD=$enableval],
16 + [ENABLE_INPUT_ESD=yes])
18 +if test "$ENABLE_INPUT_ESD" = "yes"; then
19 PKG_CHECK_MODULES([LIBESD], [esound >= esound_required_version],
20 [HAVE_ESD="yes"], [HAVE_ESD="no"])
24 AC_MSG_WARN([*** EsounD not found or too old. The EsounD input plugin won't be built])
29 +AC_ARG_ENABLE([jack], AS_HELP_STRING([--disable-jack],
30 + [Do not build jack input plugin @<:@default=enabled@:>@]),
31 + [ENABLE_INPUT_JACK=$enableval],
32 + [ENABLE_INPUT_JACK=yes])
34 +if test "$ENABLE_INPUT_JACK" = "yes"; then
35 PKG_CHECK_MODULES([LIBJACK], [jack >= jack_required_version], [HAVE_JACK="yes"], [HAVE_JACK="no"])
36 if test "$HAVE_JACK" = "yes"; then
37 build_input_plugins="$build_input_plugins jack"
39 AC_MSG_WARN([*** libjack is too old. You can download a newer version at
40 http://jackit.sf.net/. The jackit input plugin won't be built])
43 -dnl List of plugins to build
44 -build_input_plugins=""
45 -build_actor_plugins=""
46 -build_morph_plugins=""
50 AC_ARG_ENABLE([gdkpixbuf-plugin],