Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/audio/a2jmidid/files/patch-meson.build
16461 views
1
--- meson.build.orig 2019-09-23 22:34:12 UTC
2
+++ meson.build
3
@@ -3,8 +3,7 @@ project(
4
'c',
5
default_options: [
6
'prefix=/usr/local',
7
- 'b_pie=true',
8
- 'b_lto=true'
9
+ 'b_pie=true'
10
],
11
meson_version: '>=0.50.0',
12
license: 'GPL2+',
13
@@ -17,6 +16,7 @@ dep_jack = dependency('jack')
14
dep_alsa = dependency('alsa')
15
lib_dl = cc.find_library('dl')
16
lib_pthread = cc.find_library('pthread')
17
+lib_execinfo = cc.find_library('execinfo')
18
deps_a2jmidid = [dep_alsa, dep_jack, lib_dl, lib_pthread]
19
20
# source definitions
21
@@ -50,6 +50,7 @@ if get_option('disable-dbus')
22
else
23
dep_dbus = dependency('dbus-1')
24
deps_a2jmidid += [dep_dbus]
25
+ deps_a2jmidid += [lib_execinfo]
26
dbus_data = configuration_data()
27
dbus_data.set('bindir', join_paths(get_option('prefix'), get_option('bindir')))
28
dbus_data.set('dbus_service_dir', join_paths(get_option('prefix'), 'share', 'dbus-1', 'services'))
29
30