mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
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:
parent
1cd8db6a92
commit
3945316409
2 changed files with 19 additions and 0 deletions
|
@ -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),
|
||||
|
|
13
configure.ac
13
configure.ac
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue