Path: blob/main/audio/a2jmidid/files/patch-meson.build
16461 views
--- meson.build.orig 2019-09-23 22:34:12 UTC1+++ meson.build2@@ -3,8 +3,7 @@ project(3'c',4default_options: [5'prefix=/usr/local',6- 'b_pie=true',7- 'b_lto=true'8+ 'b_pie=true'9],10meson_version: '>=0.50.0',11license: 'GPL2+',12@@ -17,6 +16,7 @@ dep_jack = dependency('jack')13dep_alsa = dependency('alsa')14lib_dl = cc.find_library('dl')15lib_pthread = cc.find_library('pthread')16+lib_execinfo = cc.find_library('execinfo')17deps_a2jmidid = [dep_alsa, dep_jack, lib_dl, lib_pthread]1819# source definitions20@@ -50,6 +50,7 @@ if get_option('disable-dbus')21else22dep_dbus = dependency('dbus-1')23deps_a2jmidid += [dep_dbus]24+ deps_a2jmidid += [lib_execinfo]25dbus_data = configuration_data()26dbus_data.set('bindir', join_paths(get_option('prefix'), get_option('bindir')))27dbus_data.set('dbus_service_dir', join_paths(get_option('prefix'), 'share', 'dbus-1', 'services'))282930