From 3f39fd7ebeb5642f50a994e41b330ffb332f644e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 22 May 2008 20:29:20 +0000 Subject: [PATCH] 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. --- ChangeLog | 9 +++++++++ configure.ac | 8 ++++---- win32/common/libgstreamer.def | 2 ++ 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3c23338..388e64e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2008-05-22 Sebastian Dröge + + * 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 * gst/gstparse.c: (_gst_parse_escape), (gst_parse_launchv): diff --git a/configure.ac b/configure.ac index c0a25a4..a17fded 100644 --- a/configure.ac +++ b/configure.ac @@ -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: diff --git a/win32/common/libgstreamer.def b/win32/common/libgstreamer.def index 9be809b..4d51de7 100644 --- a/win32/common/libgstreamer.def +++ b/win32/common/libgstreamer.def @@ -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 -- 2.7.4