diff options
-rw-r--r-- | lilv.pc.in | 2 | ||||
-rw-r--r-- | wscript | 6 |
2 files changed, 6 insertions, 2 deletions
@@ -6,6 +6,6 @@ includedir=@INCLUDEDIR@ Name: Lilv Version: @LILV_VERSION@ Description: Simple C library for hosting LV2 plugins -Requires: lv2core lv2-lv2plug.in-ns-ext-state +Requires: lv2core @LILV_PKG_DEPS@ Libs: -L${libdir} -l@LIB_LILV@ -ldl Cflags: -I${includedir}/lilv-@LILV_MAJOR_VERSION@ @@ -170,8 +170,12 @@ def build(bld): bld.install_files(includedir, bld.path.ant_glob('lilv/*.hpp')) # Pkgconfig file + pkg_deps = 'lv2-lv2plug.in-ns-ext-urid' + if bld.is_defined('HAVE_LV2_STATE'): + pkg_deps += ' lv2-lv2plug.in-ns-ext-state' autowaf.build_pc(bld, 'LILV', LILV_VERSION, LILV_MAJOR_VERSION, [], - {'LILV_MAJOR_VERSION' : LILV_MAJOR_VERSION}) + {'LILV_MAJOR_VERSION' : LILV_MAJOR_VERSION, + 'LILV_PKG_DEPS' : pkg_deps}) lib_source = ''' src/collections.c |