gst: add missing define guard
authorJonas Danielsson <jonas.danielsson@spiideo.com>
Wed, 22 Jun 2022 07:43:02 +0000 (09:43 +0200)
committerJonas Danielsson <jonas.danielsson@spiideo.com>
Wed, 22 Jun 2022 07:43:02 +0000 (09:43 +0200)
If compiled with -Dgstreamer:gst_debug=false and we have
GST_REMOVE_DISABLED defined we will get the following compiler error:

```
[...]/libgstreamer-1.0.so.0.2100.0.p/gst.c.o: in function `gst_deinit':
[...]/gst/gst.c:1258: undefined reference to `_priv_gst_debug_cleanup'
[...] hidden symbol `_priv_gst_debug_cleanup' isn't defined
```

Add the missing define guard to avoid this.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2648>

subprojects/gstreamer/gst/gst.c

index 21c237c..01c03c6 100644 (file)
@@ -1252,10 +1252,12 @@ gst_deinit (void)
   GST_INFO ("deinitialized GStreamer");
   g_mutex_unlock (&init_lock);
 
+#ifndef GST_DISABLE_GST_DEBUG
   /* Doing this as the very last step to allow the above GST_INFO() to work
    * correctly. It's of course making the above statement a lie: for a short
    * while we're not deinitialized yet */
   _priv_gst_debug_cleanup ();
+#endif
 }
 
 /**