summaryrefslogtreecommitdiff
path: root/dev-libs/totem-pl-parser/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-04-28 09:54:45 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-04-28 09:54:45 +0100
commitb7ebc951da8800f711142f69d9d958bde67a112d (patch)
treee318514216845acb8f2e49fff7a5cba4027e9d91 /dev-libs/totem-pl-parser/files
parentdc7cbdfa65fd814b3b9aa3c56257da201109e807 (diff)
gentoo resync : 28.04.2019
Diffstat (limited to 'dev-libs/totem-pl-parser/files')
-rw-r--r--dev-libs/totem-pl-parser/files/3.26.2-optional-introspection.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-libs/totem-pl-parser/files/3.26.2-optional-introspection.patch b/dev-libs/totem-pl-parser/files/3.26.2-optional-introspection.patch
deleted file mode 100644
index f258b20b73da..000000000000
--- a/dev-libs/totem-pl-parser/files/3.26.2-optional-introspection.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From e097a4608cafac147546db658a4a37f8a23715ca Mon Sep 17 00:00:00 2001
-From: Mart Raudsepp <leio@gentoo.org>
-Date: Thu, 17 Jan 2019 01:16:40 +0200
-Subject: [PATCH] build: make introspection optional, not based on
- cross-compiling
-
-This is how most other projects do it - cross-compiling that hits trouble
-can just disable it then.
-
-diff --git a/meson_options.txt b/meson_options.txt
-index 9c32a5f..58e9f8c 100644
---- a/meson_options.txt
-+++ b/meson_options.txt
-@@ -6,3 +6,5 @@ option('enable-libgcrypt', type: 'combo', choices : ['yes', 'no', 'auto'], value
- description : 'Enable libgcrypt support.')
- option('enable-gtk-doc', type: 'boolean', value: 'false',
- description : 'Generate the API reference (depends on GTK-Doc)')
-+option('enable-introspection', type: 'boolean', value: 'true',
-+ description : 'Generate gobject-introspection bindings')
-diff --git a/plparse/meson.build b/plparse/meson.build
-index bdfde9d..ad4e344 100644
---- a/plparse/meson.build
-+++ b/plparse/meson.build
-@@ -121,7 +121,7 @@ if have_quvi
- endif
-
- # Introspection
--if not meson.is_cross_build()
-+if get_option('enable-introspection')
- gnome.generate_gir(plparser_lib,
- sources: plparser_public_headers + plparser_sources + [
- totem_pl_parser_marshalers[1],
---
-2.17.0
-