summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2020-07-25 23:40:05 +0100
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-07-25 23:17:50 +0000
commitb73e81614021a856fc7d3ff221a9bbf5ebf2ce6e (patch)
tree26d4882283762dc1fa8bd768209d94df7cca8012
parentbab10bd05f3afc3389713292427573769fc4c4e2 (diff)
validate: fix up gir namespace and symbol prefix
Change gir namespace and symbol prefix from GstValidate / gst_validate to Gst / gst, same as we do for other libs like GstVideo etc. Helps with warnings about GST_IS_VALIDATE_* Fixes #46, Closes !214 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/215>
-rw-r--r--validate/gst/validate/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/validate/gst/validate/meson.build b/validate/gst/validate/meson.build
index f0b6aa3..158bbb6 100644
--- a/validate/gst/validate/meson.build
+++ b/validate/gst/validate/meson.build
@@ -82,8 +82,8 @@ if build_gir
sources : gstvalidate_sources + gstvalidate_headers + gst_validate_enums,
nsversion : '1.0',
namespace : 'GstValidate',
- symbol_prefix : 'gst_validate',
- identifier_prefix : 'GstValidate',
+ symbol_prefix : 'gst',
+ identifier_prefix : 'Gst',
export_packages : 'gst-validate-' + apiversion,
includes : ['GObject-2.0',
'GLib-2.0',