pidgin/plugins/notify/meson.build

Fri, 30 Sep 2022 03:11:02 -0500

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Fri, 30 Sep 2022 03:11:02 -0500
changeset 41764
5d2bc2736da2
parent 41718
785c4056ce54
child 41825
a1b935298710
permissions
-rw-r--r--

Remove PURPLE_NO_TZ_OFF

There is no `purple_str_to_time` any more, and Jabber can use a NULL pointer
instead for the same meaning.

Testing Done:
Compiled

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

notify = library('notify', 'notify.c',
    c_args : ['-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="PidginPlugin-Notify"'],
    dependencies : [libpurple_dep, libpidgin_dep, glib],
    name_prefix : '',
    build_by_default: false,
    install : false, install_dir : PIDGIN_PLUGINDIR)

settings_schemas = [
  'im.pidgin.Pidgin.plugin.Notify.gschema.xml',
]

install_data(settings_schemas, install_dir: schemas_dir)
gnome.post_install(glib_compile_schemas: true)

# Compile the schemas in the current directory; this is only useful for testing
gnome.compile_schemas(depend_files: files(settings_schemas))

devenv.append('PIDGIN_PLUGIN_PATH', meson.current_build_dir())

mercurial