archrelease: copy trunk to extra-x86_64
[arch-packages.git] / libvisual-plugins / repos / extra-x86_64 / 050_all_automagic.patch
blob9c25fac720d30c152c82a867bf23c321a16396fa
1 --- configure.ac.old 2007-02-24 23:09:08.000000000 +0100
2 +++ configure.ac 2007-02-24 23:13:15.000000000 +0100
3 @@ -89,7 +89,18 @@
5 dnl Libraries
7 +dnl List of plugins to build
8 +build_input_plugins=""
9 +build_actor_plugins=""
10 +build_morph_plugins=""
12 dnl EsounD
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"])
22 @@ -98,8 +109,15 @@
23 else
24 AC_MSG_WARN([*** EsounD not found or too old. The EsounD input plugin won't be built])
26 +fi
28 dnl JACK
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"
38 @@ -107,11 +125,7 @@
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=""
47 +fi
49 dnl GdkPixbuf
50 AC_ARG_ENABLE([gdkpixbuf-plugin],