configure.ac: Fix --disable-extern (can't set conditionals conditionally, #343602).

Original commit message from CVS:
* configure.ac:
Fix --disable-extern (can't set conditionals conditionally,
#343602).
This commit is contained in:
Tim-Philipp Müller 2006-06-17 14:13:03 +00:00
parent 1cd8db6a92
commit 3945316409
2 changed files with 19 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2006-06-17 Tim-Philipp Müller <tim at centricular dot net>
* configure.ac:
Fix --disable-extern (can't set conditionals conditionally,
#343602).
2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
* tests/check/elements/audioresample.c: (test_reuse),

View file

@ -489,6 +489,19 @@ vorbis_synthesis_restart (v);
CFLAGS="$ac_cflags_save"
fi
else
dnl not building plugins with external dependencies,
dnl but we still need to set the conditionals
AM_CONDITIONAL(USE_ALSA, false)
AM_CONDITIONAL(USE_CDPARANOIA, false)
AM_CONDITIONAL(USE_GNOME_VFS, false)
AM_CONDITIONAL(USE_LIBVISUAL, false)
AM_CONDITIONAL(USE_OGG, false)
AM_CONDITIONAL(USE_PANGO, false)
AM_CONDITIONAL(USE_THEORA, false)
AM_CONDITIONAL(USE_VORBIS, false)
fi dnl of EXT plugins
dnl seeking needs freetype, so check for it here