summaryrefslogtreecommitdiff
path: root/media-libs/libsixel/files/libsixel-meson.patch
blob: b912288e2e667d554614560d62a80bc33ed0e782 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
--- a/meson.build
+++ b/meson.build
@@ -27,7 +27,7 @@
     #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
     __attribute__((deprecated)) void test(void) {}
 ''')
-  conf_data.set('HAVE_DIAGNOSTIC_DEPRECATED_DECLARATIONS', true)
+  conf_data.set('HAVE_DIAGNOSTIC_DEPRECATED_DECLARATIONS', 1)
 endif
 
 c_args = [
@@ -101,24 +101,24 @@
 python2_installation = pymod.find_installation('python2', required: get_option('python2'))
 
 if get_option('libcurl').enabled() and curl_found.found()
-  conf_data.set('HAVE_LIBCURL', true)
+  conf_data.set('HAVE_LIBCURL', 1)
   libsixel_deps += [curl_found]
 endif
 
-if get_option('jpeg').enabled() and jpeg_found
-  conf_data.set('HAVE_JPEG', true)
+if get_option('jpeg').enabled() and jpeg_found.found()
+  conf_data.set('HAVE_JPEG', 1)
   libsixel_deps += [jpeg_found]
 endif
 
-if get_option('png').enabled() and png_found
-  conf_data.set('HAVE_PNG', true)
+if get_option('png').enabled() and png_found.found()
+  conf_data.set('HAVE_PNG', 1)
   libsixel_deps += [png_found]
 endif
 
 loaders = ['stb-image']
 
 if get_option('gd').enabled() and gd_found.found()
-  conf_data.set('HAVE_GD', true)
+  conf_data.set('HAVE_GD', 1)
   libsixel_deps += [gd_found]
   loaders += ['gd']
 
@@ -132,19 +132,19 @@
 
   foreach f : gd_funcs
     if cc.has_function(f, dependencies: gd_found)
-      conf_data.set('HAVE_DECL_@0@'.format(f.to_upper()), true)
+      conf_data.set('HAVE_DECL_@0@'.format(f.to_upper()), 1)
     endif
   endforeach
 endif
 
 if get_option('gdk-pixbuf2').enabled() and gdkpixbuf2_found.found()
-  conf_data.set('HAVE_GDK_PIXBUF2', true)
+  conf_data.set('HAVE_GDK_PIXBUF2', 1)
   libsixel_deps += [gdkpixbuf2_found]
   loaders += ['gdk-pixbuf2']
 endif
 
 if have_getopt_long
-  conf_data.set('HAVE_GETOPT_LONG', true)
+  conf_data.set('HAVE_GETOPT_LONG', 1)
 endif
 
 configure_file(output: 'config.h', configuration: conf_data)