Apply feedback from Colin Clark
[geeqie.git] / meson.build
1 # This file is a part of Geeqie project (https://www.geeqie.org/).
2 # Copyright (C) 2008 - 2022 The Geeqie Team
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # Meson default directories used in this project:
15 # prefix - /usr/local
16 # bindir - bin
17 # datadir - share
18
19 # Meson core options:
20 # buildtype
21 # debug
22
23 # Project expanded default directories:
24 # prefix        /usr/local/
25 # bindir        /usr/local/bin                          geeqie executable
26 # gq_bindir     /usr/local/lib/geeqie               *   plugins scripts
27 # datadir       /usr/local/share/
28 #               /usr/local/share/applications           geeqie.desktop
29 # [gq_]appdir   /usr/local/share/geeqie/            *   template.desktop
30 # desktopdir    /usr/local/share/geeqie/applications    plugin desktop files
31 # appdatadir    /usr/local/share/metainfo               org.geeqie.Geeqie.appdata.xml
32 # icondir       /usr/local/share/pixmaps                geeqie.png icon
33 # [gq_]helpdir  /usr/local/share/doc/geeqie         *   readme files etc.
34 # [gq_]htmldir  /usr/local/share/doc/geeqie/html    *   help files
35 # gq_localedir  /usr/locale/share/locale
36 # mandir1       /usr/local/share/man/man1               man page
37 # podir         project_root/po
38
39 # * See meson_options.txt file
40
41 project(
42     'geeqie',
43     'c',
44     'cpp',
45     version : run_command('./version.sh', check : true).stdout().strip(),
46     license : ['GPL-2.0-or-later'],
47     meson_version : '>=0.56.2',
48     default_options : ['cpp_std=c++14', 'warning_level=3', 'buildtype=debugoptimized', 'cpp_link_args=-rdynamic']
49 )
50
51 # To inhibit warnings from the generated files icons_inline.h and ui_icons.h
52 add_global_arguments('-Wno-overlength-strings', language : 'c')
53
54 # To compile originally-C files as C++
55 add_global_arguments('-Wno-error=deprecated-declarations', language : 'cpp')
56 add_global_arguments('-Wno-error=sign-compare', language : 'cpp')
57 add_global_arguments('-Wno-error=return-type', language : 'cpp')
58 add_global_arguments('-Wno-error=literal-suffix', language : 'cpp')
59 add_global_arguments('-Wno-error=write-strings', language : 'cpp')
60
61 # Project requirements
62 project_sources = []
63 gnome = import('gnome')
64 thread_dep = dependency('threads')
65 cc = meson.get_compiler('c')
66 i18n = import('i18n')
67 fs = import('fs')
68 configuration_inc = include_directories('.')
69
70 # Extended stack trace using backward-app
71 option = get_option('devel')
72 if option.enabled()
73     if cc.has_link_argument('-ldwarf')
74         add_project_link_arguments('-ldwarf', language: 'cpp')
75     endif
76 endif
77
78 # External programs
79 gdk_pixbuf_csource = find_program('gdk-pixbuf-csource', required : true)
80 glib_compile_resources = find_program('glib-compile-resources', required : true)
81 glib_genmarshal = find_program('glib-genmarshal', required : true)
82
83 option = get_option('git')
84 if not option.disabled()
85     running_from_git = find_program('git', required: false).found() and fs.is_dir('.git')
86 else
87     running_from_git = false
88     summary({'git' : ['disabled - ChangeLog, ChangeLog.html, lua-api help file created:', false]}, section : 'Documentation', bool_yn : true)
89 endif
90
91 debug = get_option('debug')
92
93 # Note that main.cc sets prefix to the directory above where the executable is run from.
94 # This is to allow AppImages to be used
95
96 # These gq_* variables are paths relative to /prefix/,
97 # and are also used in defines in the source as GQ_*
98 if get_option('gq_appdir') == ''
99     gq_appdir = join_paths(get_option('datadir'), 'geeqie')
100 else
101     gq_appdir = get_option('gq_appdir')
102 endif
103
104 # This is not the same as Meson bindir
105 if get_option('gq_bindir') == ''
106     gq_bindir = 'lib/geeqie'
107 else
108     gq_bindir = get_option('gq_bindir')
109 endif
110
111 if get_option('gq_helpdir') == ''
112     gq_helpdir = join_paths(get_option('datadir'), 'doc/geeqie')
113 else
114     gq_helpdir = get_option('gq_helpdir')
115 endif
116
117 if get_option('gq_htmldir') == ''
118     gq_htmldir = join_paths(get_option('datadir'), 'doc/geeqie/html')
119 else
120     gq_htmldir = get_option('gq_htmldir')
121 endif
122
123 if get_option('gq_localedir') == ''
124     gq_localedir = join_paths(get_option('datadir'), 'locale')
125 else
126     gq_localedir = get_option('gq_localedir')
127 endif
128
129
130 # Set up the absolute directory paths used
131 prefix = get_option('prefix')
132 datadir = join_paths(prefix, get_option('datadir'))
133
134 # Installation paths are absolute
135 appdir = join_paths(prefix, gq_appdir)
136 appdatadir = join_paths(datadir, 'metainfo')
137 desktopdir = join_paths(datadir, meson.project_name(), 'applications')
138 helpdir = join_paths(prefix, gq_helpdir)
139 htmldir = join_paths(prefix, gq_htmldir)
140 icondir = join_paths(datadir, 'pixmaps')
141 mandir1 = join_paths(datadir, 'man', 'man1')
142
143 podir = join_paths(meson.project_source_root(), 'po')
144 scriptsdir = join_paths(meson.project_source_root(), 'scripts')
145
146 summary({'gq_appdir': gq_appdir,
147         'gq_bindir': gq_helpdir,
148         'gq_helpdir': gq_helpdir,
149         'gq_htmldir': gq_htmldir,
150         'gq_localedir': gq_localedir,
151         }, section: 'Directories')
152
153 # Create the define constants used in the sources. Set via config.h.in
154 conf_data = configuration_data()
155 conf_data.set_quoted('VERSION', meson.project_version())
156 conf_data.set('DEBUG', debug)
157
158 option = get_option('gtk4')
159 if option.enabled()
160     gtk_dep = dependency('gtk4', required: true)
161     conf_data.set('HAVE_GTK4', 1)
162 else
163     gtk_dep = dependency('gtk+-3.0', version : '>=3.24', required: true)
164 endif
165 glib_dep = dependency('glib-2.0', version : '>=2.52', required: true)
166
167 # Required only when backward-cpp is used
168 libdw_dep = []
169 libunwind_dep = []
170 option = get_option('devel')
171 if option.enabled()
172     libdw_dep = dependency('libdw', required : true)
173     if libdw_dep.found()
174         libunwind_dep = dependency('libunwind', required : true)
175         if libunwind_dep.found()
176             conf_data.set('HAVE_DEVELOPER', 1)
177             summary({'developer mode' : ['extended stacktrace:', true]}, section : 'Debugging', bool_yn : true)
178         else
179             summary({'developer mode' : ['libunwind not found. extended stacktrace:', false]}, section : 'Debugging', bool_yn : true)
180         endif
181     else
182         summary({'developer mode' : ['libdw not found. extended stacktrace:', false]}, section : 'Debugging', bool_yn : true)
183     endif
184 else
185     summary({'developer mode' : ['extended stacktrace:', false]}, section : 'Debugging', bool_yn : true)
186 endif
187
188 # Required only for seg. fault stacktrace and backtrace debugging
189 option = get_option('execinfo')
190 libexecinfo_dep = []
191 if not option.disabled()
192     result = cc.check_header('execinfo.h')
193     if result
194         # Include unconditionally dependency for NetBSD.
195         libexecinfo_dep = cc.find_library('execinfo', required : false)
196         conf_data.set('HAVE_EXECINFO_H', 1)
197         summary({'execinfo' : ['stacktrace supported:', true]}, section : 'Debugging', bool_yn : true)
198     else
199         summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Debugging', bool_yn : true)
200     endif
201 else
202     summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Debugging', bool_yn : true)
203 endif
204
205 libarchive_dep = []
206 req_version = '>=3.4.0'
207 option = get_option('archive')
208 if not option.disabled()
209     libarchive_dep = dependency('libarchive', version : req_version, required : get_option('archive'))
210     if libarchive_dep.found()
211         conf_data.set('HAVE_ARCHIVE', 1)
212         summary({'archive' : ['archive files e.g. .zip supported:', true]}, section : 'Configuration', bool_yn : true)
213     else
214         summary({'archive' : ['libarchive ' + req_version + ' not found - archive files e.g. .zip supported::', false]}, section : 'Configuration', bool_yn : true)
215     endif
216 else
217     summary({'archive' : ['disabled - archive files e.g. .zip supported:', false]}, section : 'Configuration', bool_yn : true)
218 endif
219
220 lcms_dep = []
221 req_version = '>=2.0'
222 option = get_option('cms')
223 if not option.disabled()
224     xxd = find_program('xxd', 'xxdi.pl', required : false)
225     if xxd.found()
226         lcms_dep = dependency('lcms2', version : req_version, required : get_option('cms'))
227         if lcms_dep.found()
228             conf_data.set('HAVE_LCMS', 1)
229             conf_data.set('HAVE_LCMS2', 1)
230             summary({'cms' : ['color management supported:', true]}, section : 'Configuration', bool_yn : true)
231         else
232             summary({'cms' : ['lcms2' + req_version + ' not found - color management supported:', false]}, section : 'Configuration', bool_yn : true)
233         endif
234     else
235         summary({'cms' : ['xxd or xxdi.pl not found - color management supported:', false]}, section : 'Configuration', bool_yn : true)
236     endif
237 else
238     summary({'cms' : ['disabled - color management supported:', false]}, section : 'Configuration', bool_yn : true)
239 endif
240
241 ddjvuapi_dep = []
242 req_version = '>=2.5.27'
243 option = get_option('djvu')
244 if not option.disabled()
245     ddjvuapi_dep = dependency('ddjvuapi', version : req_version, required : get_option('djvu'))
246     if ddjvuapi_dep.found()
247         conf_data.set('HAVE_DJVU', 1)
248         summary({'djvu' : ['djvu files supported:', true]}, section : 'Configuration', bool_yn : true)
249     else
250         summary({'djvu' : ['ddjvuapi ' + req_version + ' not found - djvu files supported:', false]}, section : 'Configuration', bool_yn : true)
251     endif
252 else
253     summary({'djvu' : ['disabled - djvu files supported:', false]}, section : 'Configuration', bool_yn : true)
254 endif
255
256 option = get_option('evince')
257 if not option.disabled()
258     evince = find_program('evince', required : false)
259     if evince.found()
260         summary({'print preview' : ['print preview supported:', true]}, section : 'Configuration', bool_yn : true)
261     else
262         summary({'print preview' : ['evince not found - print preview supported:', false]}, section : 'Configuration', bool_yn : true)
263     endif
264 else
265     summary({'print preview' : ['disabled - print preview supported:', false]}, section : 'Configuration', bool_yn : true)
266 endif
267
268 # Required only for seg. fault stacktrace and backtrace debugging
269 option = get_option('execinfo')
270 if not option.disabled()
271     result = cc.check_header('execinfo.h')
272     if result
273         conf_data.set('HAVE_EXECINFO_H', 1)
274         summary({'execinfo' : ['stacktrace supported:', true]}, section : 'Configuration', bool_yn : true)
275     else
276         summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Configuration', bool_yn : true)
277     endif
278 else
279     summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Configuration', bool_yn : true)
280 endif
281
282 exiv2_dep = []
283 # See https://github.com/BestImageViewer/geeqie/issues/1090
284 # for the reason for 0.28.0 exclusion
285 req_version = ['>=0.11', '!=0.28.0']
286
287 req_version_str = ''
288 foreach req_version_str_ : req_version
289     req_version_str += req_version_str_
290 endforeach
291
292 option = get_option('exiv2')
293 if not option.disabled()
294     exiv2_dep = dependency('exiv2', version : req_version, required : get_option('exiv2'))
295     if exiv2_dep.found()
296         conf_data.set('HAVE_EXIV2', 1)
297         summary({'exiv2' : ['image metadata processed by exiv2:', true]}, section : 'Configuration', bool_yn : true)
298     else
299         summary({'exiv2' : ['exiv2 ' + req_version_str + ' not found - image data not processed by exiv2:', false]}, section : 'Configuration', bool_yn : true)
300     endif
301 else
302     summary({'exiv2' : ['disabled - image data processed by exiv2:', false]}, section : 'Configuration', bool_yn : true)
303 endif
304
305 champlain_dep = []
306 champlain_gtk_dep = []
307 clutter_dep = []
308 clutter_gtk_dep = []
309 req_version_champlain = '>=0.12'
310 req_version_champlain_gtk = '>=0.12'
311 req_version_clutter = '>=1.0'
312 req_version_clutter_gtk = '>=1.0'
313 option = get_option('gps-map')
314 if not option.disabled()
315     champlain_dep = dependency('champlain-0.12', version : req_version_champlain, required : get_option('gps-map'))
316     champlain_gtk_dep = dependency('champlain-gtk-0.12', version : req_version_champlain_gtk, required : get_option('gps-map'))
317     if champlain_dep.found() and champlain_gtk_dep.found()
318         clutter_dep = dependency('clutter-1.0', version : req_version_clutter, required : get_option('gps-map'))
319         clutter_gtk_dep = dependency('clutter-gtk-1.0', version : req_version_clutter_gtk, required : get_option('gps-map'))
320         if clutter_dep.found() and clutter_gtk_dep.found()
321             conf_data.set('HAVE_CLUTTER', 1)
322             conf_data.set('HAVE_LIBCHAMPLAIN', 1)
323             conf_data.set('HAVE_LIBCHAMPLAIN_GTK', 1)
324             summary({'gps-map' : ['GPS map displayed', true]}, section : 'Configuration', bool_yn : true)
325         else
326             if not clutter_dep.found()
327                 summary({'gps-map-clutter' : ['clutter-1.0 ' + req_version_clutter + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
328             endif
329             if not clutter_gtk_dep.found()
330                 summary({'gps-map-clutter-gtk' : ['clutter-gtk-1.0 ' + req_version_clutter_gtk + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
331             endif
332         endif
333     else
334         if not champlain_dep.found()
335             summary({'gps-map-champlain' : ['champlain-0.12 ' + req_version_champlain + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
336         endif
337         if not champlain_gtk_dep.found()
338             summary({'gps-map-champlain-gtk' : ['champlain-gtk-0.12 ' + req_version_champlain_gtk + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
339         endif
340     endif
341 else
342     summary({'gps-map' : ['disabled - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
343 endif
344
345 libheif_dep = []
346 req_version = '>=1.3.2'
347 option = get_option('heif')
348 if not option.disabled()
349     libheif_dep = dependency('libheif', version : req_version, required : get_option('heif'))
350     if libheif_dep.found()
351         conf_data.set('HAVE_HEIF', 1)
352         summary({'heif' : ['heif files supported:', true]}, section : 'Configuration', bool_yn : true)
353     else
354         summary({'heif' : ['libheif ' + req_version + ' not found - heif files supported:', false]}, section : 'Configuration', bool_yn : true)
355     endif
356 else
357     summary({'heif' : ['disabled - heif files supported:', false]}, section : 'Configuration', bool_yn : true)
358 endif
359
360 libopenjp2_dep = []
361 req_version = '>=2.3.0'
362 option = get_option('j2k')
363 if not option.disabled()
364     libopenjp2_dep = dependency('libopenjp2', version : req_version, required : get_option('j2k'))
365     if libopenjp2_dep.found()
366         conf_data.set('HAVE_J2K', 1)
367         summary({'j2k' : ['j2k files supported:', true]}, section : 'Configuration', bool_yn : true)
368     else
369         summary({'j2k' : ['libopenjp2 ' + req_version + ' not found - j2k files supported:', false]}, section : 'Configuration', bool_yn : true)
370     endif
371 else
372     summary({'j2k' : ['disabled - j2k files supported:', false]}, section : 'Configuration', bool_yn : true)
373 endif
374
375 libjpeg_dep = []
376 option = get_option('jpeg')
377 if not option.disabled()
378 libjpeg_dep = dependency('libjpeg', required : get_option('jpeg'))
379     if libjpeg_dep.found()
380         if cc.has_function('jpeg_destroy_decompress', dependencies : libjpeg_dep)
381             conf_data.set('HAVE_JPEG', 1)
382             summary({'jpeg' : ['jpeg files supported:', true]}, section : 'Configuration', bool_yn : true)
383         else
384             summary({'jpeg' : ['jpeg_destroy_decompress not found - jpeg files supported:', false]}, section : 'Configuration', bool_yn : true)
385         endif
386     else
387         summary({'jpeg' : ['libjpeg: not found', false]}, section : 'Configuration', bool_yn : true)
388     endif
389 else
390     summary({'jpeg' : ['disabled - jpeg files supported:', false]}, section : 'Configuration', bool_yn : true)
391 endif
392
393 libjxl_dep = []
394 req_version = '>=0.3.7'
395 option = get_option('jpegxl')
396 if not option.disabled()
397     libjxl_dep = dependency('libjxl', version : req_version, required : get_option('jpegxl'))
398     if libjxl_dep.found()
399         conf_data.set('HAVE_JPEGXL', 1)
400         summary({'jpegxl' : ['jpegxl files supported:', true]}, section : 'Configuration', bool_yn : true)
401     else
402         summary({'jpegxl' : ['libjxl ' + req_version + ' not found - jpegxl files supported:', false]}, section : 'Configuration', bool_yn : true)
403     endif
404 else
405     summary({'jpegxl' : ['disabled - jpegxl files supported:', false]}, section : 'Configuration', bool_yn : true)
406 endif
407
408 libraw_dep = []
409 req_version = '>=0.20'
410 option = get_option('libraw')
411 if not option.disabled()
412     libraw_dep = dependency('libraw', version : req_version, required : get_option('libraw'))
413     if libraw_dep.found()
414         conf_data.set('HAVE_RAW', 1)
415         summary({'libraw' : ['.cr3 files supported:', true]}, section : 'Configuration', bool_yn : true)
416     else
417         summary({'libraw' : ['libraw ' + req_version + ' not found - .cr3 files supported:', false]}, section : 'Configuration', bool_yn : true)
418     endif
419 else
420     summary({'libraw' : ['disabled - .cr3 files supported:', false]}, section : 'Configuration', bool_yn : true)
421 endif
422
423 lua_dep = []
424 req_version = '>=5.3'
425 option = get_option('lua')
426 if not option.disabled()
427     foreach name : ['lua', 'lua5.3', 'lua-5.3', 'lua53']
428         lua_dep = dependency(name, version: req_version, required: get_option('lua'))
429         if lua_dep.found()
430             break
431         endif
432     endforeach
433     if lua_dep.found()
434         conf_data.set('HAVE_LUA', 1)
435         summary({'lua' : ['lua supported:', true]}, section : 'Configuration', bool_yn : true)
436     else
437         summary({'lua' : ['lua ' + req_version + ' not found - lua supported:', false]}, section : 'Configuration', bool_yn : true)
438     endif
439 else
440     summary({'lua' : ['disabled - lua supported:', false]}, section : 'Configuration', bool_yn : true)
441 endif
442
443 option = get_option('pandoc')
444 if not option.disabled()
445     pandoc = find_program('pandoc', required : false)
446     if pandoc.found()
447         readme_html = custom_target(
448             'README.html',
449             input: 'README.md',
450             output: 'README.html',
451             command: [pandoc, '@INPUT@', '-o', '@OUTPUT@'],
452             install: true,
453             install_dir: helpdir)
454
455         summary({'README' : ['README.html created:', true]}, section : 'Documentation', bool_yn : true)
456     else
457         summary({'README' : ['pandoc not found - README.html created:', false]}, section : 'Documentation', bool_yn : true)
458     endif
459     install_data('README.md', 'COPYING', 'TODO', install_dir : helpdir)
460 else
461     summary({'pandoc' : ['disabled - README.html created:', false]}, section : 'Documentation', bool_yn : true)
462 endif
463
464 poppler_glib_dep = []
465 req_version = '>=0.62'
466 option = get_option('pdf')
467 if not option.disabled()
468     poppler_glib_dep = dependency('poppler-glib', version : req_version, required : get_option('pdf'))
469     if poppler_glib_dep.found()
470         conf_data.set('HAVE_PDF', 1)
471         summary({'pdf'  : ['pdf files supported:', true]}, section : 'Configuration', bool_yn : true)
472     else
473         summary({'pdf' : ['poppler-glib ' + req_version + ' not found - pdf files supported:', false]}, section : 'Configuration', bool_yn : true)
474     endif
475 else
476     summary({'pdf' : ['disabled - pdf files supported:', false]}, section : 'Configuration', bool_yn : true)
477 endif
478
479 gspell_dep = []
480 req_version = '>=1.6'
481 option = get_option('spell')
482 if not option.disabled()
483     gspell_dep = dependency('gspell-1', version : req_version, required: get_option('spell'))
484     if gspell_dep.found()
485         conf_data.set('HAVE_SPELL', 1)
486         summary({'spell' : ['spelling checks enabled', true]}, section : 'Configuration', bool_yn : true)
487     else
488         summary({'spell' : ['gspell-1 ' + req_version + ' not found - spelling checks enabled', false]}, section : 'Configuration', bool_yn : true)
489     endif
490 else
491     summary({'spell' : ['disabled - spelling checks enabled', false]}, section : 'Configuration', bool_yn : true)
492 endif
493
494 tiff_dep = []
495 option = get_option('tiff')
496 if not option.disabled()
497     tiff_dep = dependency('libtiff-4', required: get_option('tiff'))
498     if tiff_dep.found()
499         if cc.has_function('TIFFClientOpen', dependencies : tiff_dep)
500             conf_data.set('HAVE_TIFF', 1)
501             summary({'tiff' : ['tiff files supported:', true]}, section : 'Configuration', bool_yn : true)
502         else
503             summary({'tiff' : ['TIFFClientOpen not found - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
504         endif
505     else
506         summary({'tiff' : ['libtiff not found - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
507     endif
508 else
509     summary({'tiff' : ['disabled - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
510 endif
511
512 libffmpegthumbnailer_dep = []
513 req_version = '>=2.1.0'
514 option = get_option('videothumbnailer')
515 if not option.disabled()
516     libffmpegthumbnailer_dep = dependency('libffmpegthumbnailer',
517         version : req_version,
518         required : get_option('videothumbnailer'))
519
520     if libffmpegthumbnailer_dep.found()
521         conf_data.set('HAVE_FFMPEGTHUMBNAILER', 1)
522         summary({'videothumbnailer' : ['thumbnails of video files supported:', true]}, section : 'Configuration', bool_yn : true)
523
524         result = cc.has_member('struct video_thumbnailer_struct', 'prefer_embedded_metadata', prefix : '#include <libffmpegthumbnailer/videothumbnailerc.h>')
525         if result
526             conf_data.set('HAVE_FFMPEGTHUMBNAILER_METADATA', 1)
527         endif
528         summary({'fmpegthumbnailer_metadata' : ['fmpegthumbnailer_metadata found:', result]}, section : 'Thumbnailer', bool_yn : true)
529
530         result = cc.has_member('struct image_data_struct', 'image_data_width', prefix : '#include <libffmpegthumbnailer/videothumbnailerc.h>' )
531         if result
532             conf_data.set('HAVE_FFMPEGTHUMBNAILER_RGB', 1)
533         endif
534         summary({'fmpegthumbnailer_rgb' : ['fmpegthumbnailer_rgb found:', result]}, section : 'Thumbnailer', bool_yn : true)
535
536         result = cc.has_function('video_thumbnailer_set_size', dependencies : libffmpegthumbnailer_dep)
537         if result
538             conf_data.set('HAVE_FFMPEGTHUMBNAILER_WH', 1)
539         endif
540         summary({'fmpegthumbnailer_set_size' : ['fmpegthumbnailer_set_size found:', result]}, section : 'Thumbnailer', bool_yn : true)
541     else
542         summary({'videothumbnailer' : ['libvideothumbnailer ' + req_version + ' not found - thumbnails of video files supported', false]}, section : 'Configuration', bool_yn : true)
543     endif
544 else
545     summary({'videothumbnailer' : ['disabled -thumbnails of video files supported', false]}, section : 'Configuration', bool_yn : true)
546 endif
547
548 # libpixbufloader-webp is not loaded as part of libgdk-pixbuf. Just issue
549 # a warning if not installed
550 libwebp_dir = dependency('gdk-pixbuf-2.0', method: 'pkg-config').get_variable(pkgconfig: 'gdk_pixbuf_moduledir', internal: 'gdk_pixbuf_moduledir')
551
552 if libwebp_dir.contains('loaders')
553     libwebp_dep = cc.find_library('pixbufloader-webp', dirs : libwebp_dir, required : false)
554     if libwebp_dep.found()
555         summary({'webp' : ['webp files supported:', true]}, section : 'Configuration', bool_yn : true)
556     else
557         summary({'webp' : ['webp-pixbuf-loader not installed - webp files supported:', false]}, section : 'Configuration', bool_yn : true)
558     endif
559 else
560     summary({'webp' : ['webp-pixbuf-loader not installed - webp files supported:', false]}, section : 'Configuration', bool_yn : true)
561 endif
562
563 # Check for nl_langinfo and _NL_TIME_FIRST_WEEKDAY
564 code = '''#include <langinfo.h>
565 #include<stdio.h>
566 int main (int argc, char ** argv) {
567     char *c;
568     c =  nl_langinfo(_NL_TIME_FIRST_WEEKDAY);
569     return 0;
570 }'''
571 if cc.links(code, name : 'nl_langinfo and _NL_TIME_FIRST_WEEKDAY')
572     conf_data.set('HAVE__NL_TIME_FIRST_WEEKDAY', 1)
573     summary({'nl_langinfo' : ['first weekday depends on locale:', true]}, section : 'Documentation', bool_yn : true)
574 else
575     summary({'nl_langinfo' : ['nl_langinfo not found - first weekday depends on locale:', false, 'first weekday defaults to Monday']}, section : 'Documentation', bool_yn : true)
576 endif
577
578 conf_data.set_quoted('GETTEXT_PACKAGE', meson.project_name())
579 conf_data.set_quoted('GQ_APPDIR', gq_appdir)
580 conf_data.set_quoted('GQ_BINDIR', gq_bindir)
581 conf_data.set_quoted('GQ_HELPDIR', gq_helpdir)
582 conf_data.set_quoted('GQ_HTMLDIR', gq_htmldir)
583 conf_data.set_quoted('GQ_LOCALEDIR', gq_localedir)
584
585 conf_data.set_quoted('PACKAGE', meson.project_name())
586 conf_data.set_quoted('PACKAGE_NAME', meson.project_name())
587 conf_data.set_quoted('PACKAGE_STRING', meson.project_version())
588 conf_data.set_quoted('PACKAGE_TARNAME', meson.project_name())
589 conf_data.set_quoted('PACKAGE_VERSION', meson.project_version())
590 conf_data.set_quoted('VERSION', meson.project_version())
591
592 configure_file(input : 'config.h.in',
593                output : 'config.h',
594                encoding : 'UTF-8',
595                configuration : conf_data)
596
597 # For shellcheck on scripts
598 script_sources = []
599 subdir('scripts')
600
601 # Process subdirs before the sources
602 subdir('po')
603 subdir('plugins')
604
605 # Generate the executable
606 subdir('src')
607
608 # Generate the help files
609 subdir('doc')
610
611 # Install other project files
612 if running_from_git
613     cmd = [find_program('gen_changelog.sh'), meson.current_source_dir(), meson.current_build_dir()]
614     custom_target(
615         'ChangeLog',
616         input: 'ChangeLog.gqview',
617         output: ['ChangeLog', 'ChangeLog.html'],
618         command: cmd,
619         install: true,
620         install_dir: helpdir)
621     meson.add_dist_script(cmd)
622     summary({'ChangeLog' : ['ChangeLog, ChangeLog.html created:', true]}, section : 'Documentation', bool_yn : true)
623 elif fs.exists('ChangeLog.html')
624     install_data('ChangeLog', 'ChangeLog.html', install_dir: helpdir)
625     summary({'ChangeLog' : ['ChangeLog, ChangeLog.html installed from dist:', true]}, section : 'Documentation', bool_yn : true)
626 endif
627
628 install_data('geeqie.png', install_dir : icondir)
629 install_data('geeqie.1', install_dir : mandir1)
630
631 i18n.merge_file(
632     input : 'geeqie.desktop.in',
633     output : 'geeqie.desktop',
634     type : 'desktop',
635     po_dir : podir,
636     install : true,
637     install_dir : join_paths(datadir, 'applications'))
638
639 i18n.merge_file(
640     input : 'org.geeqie.Geeqie.appdata.xml.in',
641     output : 'org.geeqie.Geeqie.appdata.xml',
642     type : 'xml',
643     po_dir : podir,
644     install : true,
645     install_dir : appdatadir)
646
647 configure_file(input: 'geeqie.spec.in', output: 'geeqie.spec', configuration: conf_data)
648
649 # Basic test of the executable
650 xvfb = find_program('xvfb-run', required : false)
651 if xvfb.found()
652     test('Basic test', xvfb, args: ['--auto-servernum', geeqie_exe, '--version'], timeout: 100)
653     summary({'xvfb' : ['Test runs:', true]}, section : 'Testing', bool_yn : true)
654 else
655     summary({'xvfb' : ['Test runs:', false]}, section : 'Testing', bool_yn : true)
656 endif
657
658 # Shellcheck
659 shellcheck_exe = find_program('shellcheck', required : false)
660 script_sources += files('gen_changelog.sh',
661 'geeqie-install-debian.sh',
662 'version.sh')
663
664 if shellcheck_exe.found()
665     foreach script : script_sources
666         test('Shellcheck', shellcheck_exe, args: ['--norc', '--shell=sh', '--enable=add-default-case,avoid-nullary-conditions,check-unassigned-uppercase,deprecate-which,quote-safe-variables', script], timeout: 100)
667     endforeach
668     summary({'shellcheck' : ['Test runs:', true]}, section : 'Testing', bool_yn : true)
669 else
670     summary({'shellcheck' : ['Test runs:', false]}, section : 'Testing', bool_yn : true)
671 endif