doc/meson.build

Fri, 31 Dec 2021 03:34:12 -0600

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Fri, 31 Dec 2021 03:34:12 -0600
changeset 41232
3e534f0345b0
parent 41105
02c3569bc32b
child 42372
ba3a49903905
permissions
-rw-r--r--

Replace g_time_zone_new by g_time_zone_new_identifier

The former calls the latter with a fallback to UTC, but is deprecated, so we're going to do the same for now (though maybe we should fall back to our normal `tz == NULL` handling?)

Testing Done:
Compiled.

Reviewed at https://reviews.imfreedom.org/r/1211/

subdir('reference')

if ENABLE_GTK
	pidgin_man = configure_file(
	    input : 'pidgin3.1.in',
	    output : 'pidgin3.1',
	    configuration : man_conf,
	    install : true,
	    install_dir : get_option('mandir') / 'man1')
endif

if enable_consoleui
	finch_man = configure_file(
	    input : 'finch3.1.in',
	    output : 'finch3.1',
	    configuration : man_conf,
	    install : true,
	    install_dir : get_option('mandir') / 'man1')
endif

mercurial