summaryrefslogtreecommitdiff
path: root/media-libs/gexiv2/files/gexiv2-0.10.10-vala-fixup.patch
blob: daf72ef3a85b8a41fbfba36c6f93e093a79e25f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
From: "Marty E. Plummer" <hanetzer@startmail.com>
Date: Sun, 13 Jan 2019 13:33:32 -0600
Subject: [PATCH] meson.build: improve handling of vapi

As it currently stands the vapi files are not generatable on linux
distros which do not provide unversioned valac/vapigen. Use instead
meson's add_languages function to handle detection of existing vala
toolchain, which will check the VALAC and VAPIGEN env vars.

Signed-off-by: Marty E. Plummer <hanetzer@startmail.com>

--- a/meson.build
+++ b/meson.build
@@ -6,11 +6,9 @@ exiv2 = dependency('exiv2', version : '>
 gobject = dependency('gobject-2.0', version : '>= 2.38.0')
 
 gir = find_program('g-ir-scanner', required: false)
-vapigen = find_program('vapigen', required: false)
-vala = find_program('valac', required: false)
 
 introspection_available = gir.found() and get_option('introspection')
-vapi_available = introspection_available and vapigen.found() and get_option('vapi')
+vapi_available = introspection_available and add_languages('vala', required: false) and get_option('vapi')
 
 subdir('gexiv2')
 
--- a/test/meson.build
+++ b/test/meson.build
@@ -17,15 +17,11 @@ regression_test = executable('gexiv2-reg
 test('regression', regression_test, env : test_env)
 
 if vapi_available
-  valac = find_program('valac')
-  if valac.found()
-    add_languages('vala')
-    executable('gexiv2-dump',
-               'gexiv2-dump.vala',
-               include_directories : include_directories('..'),
-               dependencies : [gobject, vapi],
-               link_with : gexiv2)
-  endif
+  executable('gexiv2-dump',
+             'gexiv2-dump.vala',
+             include_directories : include_directories('..'),
+             dependencies : [gobject, vapi],
+             link_with : gexiv2)
 endif
 
 if python2_available