configure.ac: After discussion on IRC use the binary registry as default but allow to disable it with --disable-binar...

Original commit message from CVS:
* configure.ac:
After discussion on IRC use the binary registry as default
but allow to disable it with --disable-binary-registry.
* win32/common/libgstreamer.def:
Add the two new symbols for the binary registry.
This commit is contained in:
Sebastian Dröge 2008-05-22 20:29:20 +00:00
parent 479a58ebfe
commit 3f39fd7ebe
3 changed files with 15 additions and 4 deletions

View file

@ -1,3 +1,12 @@
2008-05-22 Sebastian Dröge <slomo@circular-chaos.org>
* configure.ac:
After discussion on IRC use the binary registry as default
but allow to disable it with --disable-binary-registry.
* win32/common/libgstreamer.def:
Add the two new symbols for the binary registry.
2008-05-22 Tim-Philipp Müller <tim.muller at collabora co uk>
* gst/gstparse.c: (_gst_parse_escape), (gst_parse_launchv):

View file

@ -190,16 +190,16 @@ fi
dnl Use binary registry
AC_ARG_ENABLE(binary-registry,
AC_HELP_STRING([--enable-binary-registry],
[enable experimental binary registry]),
AC_HELP_STRING([--disable-binary-registry],
[disable binary registry]),
[
case "${enableval}" in
yes) USE_BINARY_REGISTRY=yes ;;
no) USE_BINARY_REGISTRY=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-binary-registry) ;;
*) AC_MSG_ERROR(bad value ${enableval} for --disable-binary-registry) ;;
esac
],
[USE_BINARY_REGISTRY=no]) dnl Default value
[USE_BINARY_REGISTRY=yes]) dnl Default value
if test "x$USE_BINARY_REGISTRY" = xyes; then
dnl for config.h:

View file

@ -719,6 +719,8 @@ EXPORTS
gst_registry_add_feature
gst_registry_add_path
gst_registry_add_plugin
gst_registry_binary_read_cache
gst_registry_binary_write_cache
gst_registry_feature_filter
gst_registry_find_feature
gst_registry_find_plugin