diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-04-07 16:46:31 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2019-04-19 21:28:48 -0400 |
commit | 05dd51216c3eb04489f1b2b28632dbb257cd0dd6 (patch) | |
tree | ccc99c3ec46cd21c9afebef2febc4bd5f65647ef /dev-libs/totem-pl-parser | |
parent | dev-libs/libmspack: remove unused patches (diff) | |
download | gentoo-05dd51216c3eb04489f1b2b28632dbb257cd0dd6.tar.gz gentoo-05dd51216c3eb04489f1b2b28632dbb257cd0dd6.tar.bz2 gentoo-05dd51216c3eb04489f1b2b28632dbb257cd0dd6.zip |
dev-libs/totem-pl-parser: remove unused patch
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11626
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-libs/totem-pl-parser')
-rw-r--r-- | dev-libs/totem-pl-parser/files/3.26.2-optional-introspection.patch | 35 |
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 - |