Include check for existence of xvfb in meson.build
[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 : ['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 if not option.disabled()
191     result = cc.check_header('execinfo.h')
192     if result
193         conf_data.set('HAVE_EXECINFO_H', 1)
194         summary({'execinfo' : ['stacktrace supported:', true]}, section : 'Debugging', bool_yn : true)
195     else
196         summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Debugging', bool_yn : true)
197     endif
198 else
199     summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Debugging', bool_yn : true)
200 endif
201
202 libarchive_dep = []
203 req_version = '>=3.4.0'
204 option = get_option('archive')
205 if not option.disabled()
206     libarchive_dep = dependency('libarchive', version : req_version, required : get_option('archive'))
207     if libarchive_dep.found()
208         conf_data.set('HAVE_ARCHIVE', 1)
209         summary({'archive' : ['archive files e.g. .zip supported:', true]}, section : 'Configuration', bool_yn : true)
210     else
211         summary({'archive' : ['libarchive ' + req_version + ' not found - archive files e.g. .zip supported::', false]}, section : 'Configuration', bool_yn : true)
212     endif
213 else
214     summary({'archive' : ['disabled - archive files e.g. .zip supported:', false]}, section : 'Configuration', bool_yn : true)
215 endif
216
217 lcms_dep = []
218 req_version = '>=2.0'
219 option = get_option('cms')
220 if not option.disabled()
221     xxd = find_program('xxd', 'xxdi.pl', required : false)
222     if xxd.found()
223         lcms_dep = dependency('lcms2', version : req_version, required : get_option('cms'))
224         if lcms_dep.found()
225             conf_data.set('HAVE_LCMS', 1)
226             conf_data.set('HAVE_LCMS2', 1)
227             summary({'cms' : ['color management supported:', true]}, section : 'Configuration', bool_yn : true)
228         else
229             summary({'cms' : ['lcms2' + req_version + ' not found - color management supported:', false]}, section : 'Configuration', bool_yn : true)
230         endif
231     else
232         summary({'cms' : ['xxd or xxdi.pl not found - color management supported:', false]}, section : 'Configuration', bool_yn : true)
233     endif
234 else
235     summary({'cms' : ['disabled - color management supported:', false]}, section : 'Configuration', bool_yn : true)
236 endif
237
238 ddjvuapi_dep = []
239 req_version = '>=2.5.27'
240 option = get_option('djvu')
241 if not option.disabled()
242     ddjvuapi_dep = dependency('ddjvuapi', version : req_version, required : get_option('djvu'))
243     if ddjvuapi_dep.found()
244         conf_data.set('HAVE_DJVU', 1)
245         summary({'djvu' : ['djvu files supported:', true]}, section : 'Configuration', bool_yn : true)
246     else
247         summary({'djvu' : ['ddjvuapi ' + req_version + ' not found - djvu files supported:', false]}, section : 'Configuration', bool_yn : true)
248     endif
249 else
250     summary({'djvu' : ['disabled - djvu files supported:', false]}, section : 'Configuration', bool_yn : true)
251 endif
252
253 option = get_option('evince')
254 if not option.disabled()
255     evince = find_program('evince', required : false)
256     if evince.found()
257         summary({'print preview' : ['print preview supported:', true]}, section : 'Configuration', bool_yn : true)
258     else
259         summary({'print preview' : ['evince not found - print preview supported:', false]}, section : 'Configuration', bool_yn : true)
260     endif
261 else
262     summary({'print preview' : ['disabled - print preview supported:', false]}, section : 'Configuration', bool_yn : true)
263 endif
264
265 # Required only for seg. fault stacktrace and backtrace debugging
266 option = get_option('execinfo')
267 if not option.disabled()
268     result = cc.check_header('execinfo.h')
269     if result
270         conf_data.set('HAVE_EXECINFO_H', 1)
271         summary({'execinfo' : ['stacktrace supported:', true]}, section : 'Configuration', bool_yn : true)
272     else
273         summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Configuration', bool_yn : true)
274     endif
275 else
276     summary({'execinfo' : ['stacktrace supported:', false]}, section : 'Configuration', bool_yn : true)
277 endif
278
279 exiv2_dep = []
280 req_version = '>=0.11'
281 option = get_option('exiv2')
282 if not option.disabled()
283     exiv2_dep = dependency('exiv2', version : req_version, required : get_option('exiv2'))
284     if exiv2_dep.found()
285         conf_data.set('HAVE_EXIV2', 1)
286         summary({'exiv2' : ['image metadata processed by exiv2:', true]}, section : 'Configuration', bool_yn : true)
287     else
288         summary({'exiv2' : ['exiv2 ' + req_version + ' not found - image data not processed by exiv2:', false]}, section : 'Configuration', bool_yn : true)
289     endif
290 else
291     summary({'exiv2' : ['disabled - image data processed by exiv2:', false]}, section : 'Configuration', bool_yn : true)
292 endif
293
294 champlain_dep = []
295 champlain_gtk_dep = []
296 clutter_dep = []
297 clutter_gtk_dep = []
298 req_version_champlain = '>=0.12'
299 req_version_champlain_gtk = '>=0.12'
300 req_version_clutter = '>=1.0'
301 req_version_clutter_gtk = '>=1.0'
302 option = get_option('gps-map')
303 if not option.disabled()
304     champlain_dep = dependency('champlain-0.12', version : req_version_champlain, required : get_option('gps-map'))
305     champlain_gtk_dep = dependency('champlain-gtk-0.12', version : req_version_champlain_gtk, required : get_option('gps-map'))
306     if champlain_dep.found() and champlain_gtk_dep.found()
307         clutter_dep = dependency('clutter-1.0', version : req_version_clutter, required : get_option('gps-map'))
308         clutter_gtk_dep = dependency('clutter-gtk-1.0', version : req_version_clutter_gtk, required : get_option('gps-map'))
309         if clutter_dep.found() and clutter_gtk_dep.found()
310             conf_data.set('HAVE_CLUTTER', 1)
311             conf_data.set('HAVE_LIBCHAMPLAIN', 1)
312             conf_data.set('HAVE_LIBCHAMPLAIN_GTK', 1)
313             summary({'gps-map' : ['GPS map displayed', true]}, section : 'Configuration', bool_yn : true)
314         else
315             if not clutter_dep.found()
316                 summary({'gps-map-clutter' : ['clutter-1.0 ' + req_version_clutter + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
317             endif
318             if not clutter_gtk_dep.found()
319                 summary({'gps-map-clutter-gtk' : ['clutter-gtk-1.0 ' + req_version_clutter_gtk + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
320             endif
321         endif
322     else
323         if not champlain_dep.found()
324             summary({'gps-map-champlain' : ['champlain-0.12 ' + req_version_champlain + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
325         endif
326         if not champlain_gtk_dep.found()
327             summary({'gps-map-champlain-gtk' : ['champlain-gtk-0.12 ' + req_version_champlain_gtk + ' not found - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
328         endif
329     endif
330 else
331     summary({'gps-map' : ['disabled - GPS map displayed:', false]}, section : 'Configuration', bool_yn : true)
332 endif
333
334 libheif_dep = []
335 req_version = '>=1.3.2'
336 option = get_option('heif')
337 if not option.disabled()
338     libheif_dep = dependency('libheif', version : req_version, required : get_option('heif'))
339     if libheif_dep.found()
340         conf_data.set('HAVE_HEIF', 1)
341         summary({'heif' : ['heif files supported:', true]}, section : 'Configuration', bool_yn : true)
342     else
343         summary({'heif' : ['libheif ' + req_version + ' not found - heif files supported:', false]}, section : 'Configuration', bool_yn : true)
344     endif
345 else
346     summary({'heif' : ['disabled - heif files supported:', false]}, section : 'Configuration', bool_yn : true)
347 endif
348
349 libopenjp2_dep = []
350 req_version = '>=2.3.0'
351 option = get_option('j2k')
352 if not option.disabled()
353     libopenjp2_dep = dependency('libopenjp2', version : req_version, required : get_option('j2k'))
354     if libopenjp2_dep.found()
355         conf_data.set('HAVE_J2K', 1)
356         summary({'j2k' : ['j2k files supported:', true]}, section : 'Configuration', bool_yn : true)
357     else
358         summary({'j2k' : ['libopenjp2 ' + req_version + ' not found - j2k files supported:', false]}, section : 'Configuration', bool_yn : true)
359     endif
360 else
361     summary({'j2k' : ['disabled - j2k files supported:', false]}, section : 'Configuration', bool_yn : true)
362 endif
363
364 libjpeg_dep = []
365 option = get_option('jpeg')
366 if not option.disabled()
367 libjpeg_dep = dependency('libjpeg', required : get_option('jpeg'))
368     if libjpeg_dep.found()
369         if cc.has_function('jpeg_destroy_decompress', dependencies : libjpeg_dep)
370             conf_data.set('HAVE_JPEG', 1)
371             summary({'jpeg' : ['jpeg files supported:', true]}, section : 'Configuration', bool_yn : true)
372         else
373             summary({'jpeg' : ['jpeg_destroy_decompress not found - jpeg files supported:', false]}, section : 'Configuration', bool_yn : true)
374         endif
375     else
376         summary({'jpeg' : ['libjpeg: not found', false]}, section : 'Configuration', bool_yn : true)
377     endif
378 else
379     summary({'jpeg' : ['disabled - jpeg files supported:', false]}, section : 'Configuration', bool_yn : true)
380 endif
381
382 libjxl_dep = []
383 req_version = '>=0.3.7'
384 option = get_option('jpegxl')
385 if not option.disabled()
386     libjxl_dep = dependency('libjxl', version : req_version, required : get_option('jpegxl'))
387     if libjxl_dep.found()
388         conf_data.set('HAVE_JPEGXL', 1)
389         summary({'jpegxl' : ['jpegxl files supported:', true]}, section : 'Configuration', bool_yn : true)
390     else
391         summary({'jpegxl' : ['libjxl ' + req_version + ' not found - jpegxl files supported:', false]}, section : 'Configuration', bool_yn : true)
392     endif
393 else
394     summary({'jpegxl' : ['disabled - jpegxl files supported:', false]}, section : 'Configuration', bool_yn : true)
395 endif
396
397 libraw_dep = []
398 req_version = '>=0.20'
399 option = get_option('libraw')
400 if not option.disabled()
401     libraw_dep = dependency('libraw', version : req_version, required : get_option('libraw'))
402     if libraw_dep.found()
403         conf_data.set('HAVE_RAW', 1)
404         summary({'libraw' : ['.cr3 files supported:', true]}, section : 'Configuration', bool_yn : true)
405     else
406         summary({'libraw' : ['libraw ' + req_version + ' not found - .cr3 files supported:', false]}, section : 'Configuration', bool_yn : true)
407     endif
408 else
409     summary({'libraw' : ['disabled - .cr3 files supported:', false]}, section : 'Configuration', bool_yn : true)
410 endif
411
412 lua_dep = []
413 req_version = '>=5.3'
414 option = get_option('lua')
415 if not option.disabled()
416     foreach name : ['lua', 'lua5.3', 'lua-5.3', 'lua53']
417         lua_dep = dependency(name, version: req_version, required: get_option('lua'))
418         if lua_dep.found()
419             break
420         endif
421     endforeach
422     if lua_dep.found()
423         conf_data.set('HAVE_LUA', 1)
424         summary({'lua' : ['lua supported:', true]}, section : 'Configuration', bool_yn : true)
425     else
426         summary({'lua' : ['lua ' + req_version + ' not found - lua supported:', false]}, section : 'Configuration', bool_yn : true)
427     endif
428 else
429     summary({'lua' : ['disabled - lua supported:', false]}, section : 'Configuration', bool_yn : true)
430 endif
431
432 option = get_option('pandoc')
433 if not option.disabled()
434     pandoc = find_program('pandoc', required : false)
435     if pandoc.found()
436         readme_html = custom_target(
437             'README.html',
438             input: 'README.md',
439             output: 'README.html',
440             command: [pandoc, '@INPUT@', '-o', '@OUTPUT@'],
441             install: true,
442             install_dir: helpdir)
443
444         summary({'README' : ['README.html created:', true]}, section : 'Documentation', bool_yn : true)
445     else
446         summary({'README' : ['pandoc not found - README.html created:', false]}, section : 'Documentation', bool_yn : true)
447     endif
448     install_data('README.md', 'COPYING', 'TODO', install_dir : helpdir)
449 else
450     summary({'pandoc' : ['disabled - README.html created:', false]}, section : 'Documentation', bool_yn : true)
451 endif
452
453 poppler_glib_dep = []
454 req_version = '>=0.62'
455 option = get_option('pdf')
456 if not option.disabled()
457     poppler_glib_dep = dependency('poppler-glib', version : req_version, required : get_option('pdf'))
458     if poppler_glib_dep.found()
459         conf_data.set('HAVE_PDF', 1)
460         summary({'pdf'  : ['pdf files supported:', true]}, section : 'Configuration', bool_yn : true)
461     else
462         summary({'pdf' : ['poppler-glib ' + req_version + ' not found - pdf files supported:', false]}, section : 'Configuration', bool_yn : true)
463     endif
464 else
465     summary({'pdf' : ['disabled - pdf files supported:', false]}, section : 'Configuration', bool_yn : true)
466 endif
467
468 gspell_dep = []
469 req_version = '>=1.6'
470 option = get_option('spell')
471 if not option.disabled()
472     gspell_dep = dependency('gspell-1', version : req_version, required: get_option('spell'))
473     if gspell_dep.found()
474         conf_data.set('HAVE_SPELL', 1)
475         summary({'spell' : ['spelling checks enabled', true]}, section : 'Configuration', bool_yn : true)
476     else
477         summary({'spell' : ['gspell-1 ' + req_version + ' not found - spelling checks enabled', false]}, section : 'Configuration', bool_yn : true)
478     endif
479 else
480     summary({'spell' : ['disabled - spelling checks enabled', false]}, section : 'Configuration', bool_yn : true)
481 endif
482
483 tiff_dep = []
484 option = get_option('tiff')
485 if not option.disabled()
486     tiff_dep = dependency('libtiff-4', required: get_option('tiff'))
487     if tiff_dep.found()
488         if cc.has_function('TIFFClientOpen', dependencies : tiff_dep)
489             conf_data.set('HAVE_TIFF', 1)
490             summary({'tiff' : ['tiff files supported:', true]}, section : 'Configuration', bool_yn : true)
491         else
492             summary({'tiff' : ['TIFFClientOpen not found - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
493         endif
494     else
495         summary({'tiff' : ['libtiff not found - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
496     endif
497 else
498     summary({'tiff' : ['disabled - tiff files supported:', false]}, section : 'Configuration', bool_yn : true)
499 endif
500
501 libffmpegthumbnailer_dep = []
502 req_version = '>=2.1.0'
503 option = get_option('videothumbnailer')
504 if not option.disabled()
505     libffmpegthumbnailer_dep = dependency('libffmpegthumbnailer',
506         version : req_version,
507         required : get_option('videothumbnailer'))
508
509     if libffmpegthumbnailer_dep.found()
510         conf_data.set('HAVE_FFMPEGTHUMBNAILER', 1)
511         summary({'videothumbnailer' : ['thumbnails of video files supported:', true]}, section : 'Configuration', bool_yn : true)
512
513         result = cc.has_member('struct video_thumbnailer_struct', 'prefer_embedded_metadata', prefix : '#include <libffmpegthumbnailer/videothumbnailerc.h>')
514         if result
515             conf_data.set('HAVE_FFMPEGTHUMBNAILER_METADATA', 1)
516         endif
517         summary({'fmpegthumbnailer_metadata' : ['fmpegthumbnailer_metadata found:', result]}, section : 'Thumbnailer', bool_yn : true)
518
519         result = cc.has_member('struct image_data_struct', 'image_data_width', prefix : '#include <libffmpegthumbnailer/videothumbnailerc.h>' )
520         if result
521             conf_data.set('HAVE_FFMPEGTHUMBNAILER_RGB', 1)
522         endif
523         summary({'fmpegthumbnailer_rgb' : ['fmpegthumbnailer_rgb found:', result]}, section : 'Thumbnailer', bool_yn : true)
524
525         result = cc.has_function('video_thumbnailer_set_size', dependencies : libffmpegthumbnailer_dep)
526         if result
527             conf_data.set('HAVE_FFMPEGTHUMBNAILER_WH', 1)
528         endif
529         summary({'fmpegthumbnailer_set_size' : ['fmpegthumbnailer_set_size found:', result]}, section : 'Thumbnailer', bool_yn : true)
530     else
531         summary({'videothumbnailer' : ['libvideothumbnailer ' + req_version + ' not found - thumbnails of video files supported', false]}, section : 'Configuration', bool_yn : true)
532     endif
533 else
534     summary({'videothumbnailer' : ['disabled -thumbnails of video files supported', false]}, section : 'Configuration', bool_yn : true)
535 endif
536
537 # libpixbufloader-webp is not loaded as part of libgdk-pixbuf. Just issue
538 # a warning if not installed
539 libwebp_dir = dependency('gdk-pixbuf-2.0', method: 'pkg-config').get_variable(pkgconfig: 'gdk_pixbuf_moduledir', internal: 'gdk_pixbuf_moduledir')
540
541 if libwebp_dir.contains('loaders')
542     libwebp_dep = cc.find_library('pixbufloader-webp', dirs : libwebp_dir, required : false)
543     if libwebp_dep.found()
544         summary({'webp' : ['webp files supported:', true]}, section : 'Configuration', bool_yn : true)
545     else
546         summary({'webp' : ['webp-pixbuf-loader not installed - webp files supported:', false]}, section : 'Configuration', bool_yn : true)
547     endif
548 else
549     summary({'webp' : ['webp-pixbuf-loader not installed - webp files supported:', false]}, section : 'Configuration', bool_yn : true)
550 endif
551
552 # Check for nl_langinfo and _NL_TIME_FIRST_WEEKDAY
553 code = '''#include <langinfo.h>
554 #include<stdio.h>
555 int main (int argc, char ** argv) {
556     char *c;
557     c =  nl_langinfo(_NL_TIME_FIRST_WEEKDAY);
558     return 0;
559 }'''
560 if cc.links(code, name : 'nl_langinfo and _NL_TIME_FIRST_WEEKDAY')
561     conf_data.set('HAVE__NL_TIME_FIRST_WEEKDAY', 1)
562     summary({'nl_langinfo' : ['first weekday depends on locale:', true]}, section : 'Documentation', bool_yn : true)
563 else
564     summary({'nl_langinfo' : ['nl_langinfo not found - first weekday depends on locale:', false, 'first weekday defaults to Monday']}, section : 'Documentation', bool_yn : true)
565 endif
566
567 conf_data.set_quoted('GETTEXT_PACKAGE', meson.project_name())
568 conf_data.set_quoted('GQ_APPDIR', gq_appdir)
569 conf_data.set_quoted('GQ_BINDIR', gq_bindir)
570 conf_data.set_quoted('GQ_HELPDIR', gq_helpdir)
571 conf_data.set_quoted('GQ_HTMLDIR', gq_htmldir)
572 conf_data.set_quoted('GQ_LOCALEDIR', gq_localedir)
573
574 conf_data.set_quoted('PACKAGE', meson.project_name())
575 conf_data.set_quoted('PACKAGE_NAME', meson.project_name())
576 conf_data.set_quoted('PACKAGE_STRING', meson.project_version())
577 conf_data.set_quoted('PACKAGE_TARNAME', meson.project_name())
578 conf_data.set_quoted('PACKAGE_VERSION', meson.project_version())
579 conf_data.set_quoted('VERSION', meson.project_version())
580
581 configure_file(input : 'config.h.in',
582                output : 'config.h',
583                encoding : 'UTF-8',
584                configuration : conf_data)
585
586 # Process subdirs before the sources
587 subdir('po')
588 subdir('plugins')
589
590 # Generate the executable
591 subdir('src')
592
593 # Generate the help files
594 subdir('doc')
595
596 # Install other project files
597 if running_from_git
598     cmd = [find_program('gen_changelog.sh'), meson.current_source_dir(), meson.current_build_dir()]
599     custom_target(
600         'ChangeLog',
601         input: 'ChangeLog.gqview',
602         output: ['ChangeLog', 'ChangeLog.html'],
603         command: cmd,
604         install: true,
605         install_dir: helpdir)
606     meson.add_dist_script(cmd)
607     summary({'ChangeLog' : ['ChangeLog, ChangeLog.html created:', true]}, section : 'Documentation', bool_yn : true)
608 elif fs.exists('ChangeLog.html')
609     install_data('ChangeLog', 'ChangeLog.html', install_dir: helpdir)
610     summary({'ChangeLog' : ['ChangeLog, ChangeLog.html installed from dist:', true]}, section : 'Documentation', bool_yn : true)
611 endif
612
613 install_data('geeqie.png', install_dir : icondir)
614 install_data('geeqie.1', install_dir : mandir1)
615
616 i18n.merge_file(
617     input : 'geeqie.desktop.in',
618     output : 'geeqie.desktop',
619     type : 'desktop',
620     po_dir : podir,
621     install : true,
622     install_dir : join_paths(datadir, 'applications'))
623
624 i18n.merge_file(
625     input : 'org.geeqie.Geeqie.appdata.xml.in',
626     output : 'org.geeqie.Geeqie.appdata.xml',
627     type : 'xml',
628     po_dir : podir,
629     install : true,
630     install_dir : appdatadir)
631
632 configure_file(input: 'geeqie.spec.in', output: 'geeqie.spec', configuration: conf_data)
633
634 # Basic test of the executable
635 xvfb = find_program('xvfb-run', required : false)
636 if xvfb.found()
637     test('Basic test', xvfb, args: ['--auto-servernum', geeqie_exe, '--version'], timeout: 100)
638     summary({'xvfb' : ['Test runs:', true]}, section : 'Debugging', bool_yn : true)
639 else
640     summary({'xvfb' : ['Test runs:', false]}, section : 'Debugging', bool_yn : true)
641
642 endif