From 0f64d406e9d6668c8b9b38d1bfb137f1727f13de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D1=83=D1=81=D0=BB=D0=B0=D0=BD=20=D0=98=D0=B6=D0=B1?= =?UTF-8?q?=D1=83=D0=BB=D0=B0=D1=82=D0=BE=D0=B2?= Date: Wed, 18 Apr 2012 05:12:55 +0400 Subject: [PATCH] registry: fix hardcoded 0.10 version in win32 pluginscanner https://bugzilla.gnome.org/show_bug.cgi?id=674294 --- gst/gstregistry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstregistry.c b/gst/gstregistry.c index 6f41dcf856..21cebbf382 100644 --- a/gst/gstregistry.c +++ b/gst/gstregistry.c @@ -1593,7 +1593,7 @@ scan_and_update_registry (GstRegistry * default_registry, g_win32_get_package_installation_directory_of_module (_priv_gst_dll_handle); - dir = g_build_filename (base_dir, "lib", "gstreamer-0.10", NULL); + dir = g_build_filename (base_dir, "lib", "gstreamer-" GST_API_VERSION, NULL); GST_DEBUG ("scanning DLL dir %s", dir); changed |= gst_registry_scan_path_internal (&context, dir);