From 5628f7ea731b69e2a744c1ee209fa49965b0bf0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 25 May 2016 10:48:05 +0100 Subject: [PATCH] gst: make sure to include gstconfig.h also in gst_private.h For GST_EXPORT define and also things like GST_DISABLE_REGISTRY. Hopefully fixes the following build failure on cerbero-cross-mingw32: helpers/gst-plugin-scanner.c:50: undefined reference to `_imp___gst_disable_registry_cache' --- gst/gst_private.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gst/gst_private.h b/gst/gst_private.h index 25bed74a9a..9d174c7b37 100644 --- a/gst/gst_private.h +++ b/gst/gst_private.h @@ -38,6 +38,9 @@ extern const char g_log_domain_gstreamer[]; #include #include +/* Needed for GST_EXPORT */ +#include "gstconfig.h" + /* Needed for GstRegistry * */ #include "gstregistry.h" #include "gststructure.h"