From 7903f2032848392479c5cd865bf830b2e94d848c Mon Sep 17 00:00:00 2001
From: Simon McVittie <smcv@collabora.com>
Date: Tue, 16 Jul 2019 18:44:13 +0100
Subject: [PATCH] Disable GObject-Introspection by default

This will make it easier to do CI against SteamRT 1 'scout', which
has a very old g-ir-scanner that doesn't work in combination with
Meson (for example see
<https://github.com/ximion/appstream/issues/146>). Generating the
GObject-Introspection in local test-builds is a useful way to check
that the API is "the right shape" for GObject conventions or do rapid
prototyping, but we don't expect to use it in production, and we
disable it in the packaging.

Signed-off-by: Simon McVittie <smcv@collabora.com>
---
 meson_options.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson_options.txt b/meson_options.txt
index 9c6e7a3b9..2ebc1b050 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -15,7 +15,7 @@ option(
 option(
   'introspection',
   type : 'boolean',
-  value : true,
+  value : false,
   description : 'enable GObject-Introspection',
 )
 
-- 
GitLab