protocols/sip/meson.build

Mon, 12 May 2025 20:27:27 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Mon, 12 May 2025 20:27:27 -0500
changeset 43247
197c541b3e7c
parent 43245
b83427aa2c38
child 43266
19b9321a0177
permissions
-rw-r--r--

Add discrete options for protocol plugins

This removes the dynamic-prpls option and replaces it with discrete options
for each protocol plugin.

Testing Done:
Called in the turtles after removing all of my subproject check outs.

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

feature = get_option('sip')

feature = feature.disable_if(
  host_machine.system() == 'windows',
  error_message : 'sofia-sip is not currently packaged for windows.')

summary({'SIP': feature}, section : 'Protocols')

if not feature.allowed()
  subdir_done()
endif

SIP_SOURCES = [
	'purplesipplugin.c',
	'purplesipplugin.h',
	'purplesipprotocol.c',
	'purplesipprotocol.h',
]

sofia_sip_ua_dep = dependency('sofia-sip-ua', version : '>=1.12.11')
sofia_sip_ua_glib_dep = dependency('sofia-sip-ua-glib', version : '>=1.12.11')

sip_resources = gnome.compile_resources('purplesipresource',
	'resources/purplesip.gresource.xml',
	source_dir : 'resources',
	c_name : 'purple_sip')
SIP_SOURCES += sip_resources

shared_library('sip', SIP_SOURCES,
	c_args : ['-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="Purple-Sip"'],
	gnu_symbol_visibility : 'hidden',
	dependencies : [glib, libpurple_dep, sofia_sip_ua_dep, sofia_sip_ua_glib_dep],
	install : true,
	install_dir : PURPLE_PLUGINDIR)

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

mercurial