From e85ff42346cb4a7b4f08eb52966940211e43ed53 Mon Sep 17 00:00:00 2001 From: Alfred Persson Forsberg Date: Thu, 28 Jul 2022 20:32:22 +0200 Subject: [PATCH] Generate pkg-config file Signed-off-by: Alfred Persson Forsberg --- meson.build | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/meson.build b/meson.build index e885458..3ba2265 100644 --- a/meson.build +++ b/meson.build @@ -1,16 +1,14 @@ project('execinfo', 'c', version : '1.0.0') -# pkg = import('pkgconfig') +pkg = import('pkgconfig') prog_python = import('python').find_installation('python3') -dep_unwind = dependency('libunwind-generic', required: true)#, required : true) -# deps = [ dep_unwind ] +dep_unwind = dependency('libunwind', required: true) execinfo = library('execinfo', 'execinfo.c', - dependencies : [dep_unwind], + dependencies : [ dep_unwind ], install : true) install_headers('execinfo.h') -#pkg.generate(execinfo, -# description : 'Clone of the backtrace facility found in glibc implemented with libunwind') +pkg.generate(execinfo, description : 'Standalone implementation of glibc\'s execinfo using libunwind')