Sophie

Sophie

distrib > Mageia > cauldron > x86_64 > media > core-release-src > by-pkgid > 5b7e4d5b671a7d64b215e3dc0b82e8dd > files > 3

libsixel-1.10.3-1.mga10.src.rpm

--- a/meson.build
+++ b/meson.build
@@ -101,17 +101,17 @@
 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