gupnp-av/767388bc.patch

30 lines
679 B
Diff
Raw Permalink Normal View History

From 767388bc16e08d4e1e1f419555165cc1816be931 Mon Sep 17 00:00:00 2001
From: Jens Georg <mail@jensge.org>
Date: Sun, 5 Jun 2022 14:33:23 +0200
Subject: [PATCH] build: Fix Requires: line of pkg-config file
---
meson.build | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/meson.build b/meson.build
index 4c072c3..f4b629f 100644
--- a/meson.build
+++ b/meson.build
@@ -87,6 +87,12 @@ subdir('data')
pkg = import('pkgconfig')
pkg.generate(
gupnp_av_lib,
+ requires : [
+ 'glib-2.0',
+ 'gobject-2.0',
+ 'gio-2.0',
+ 'libxml-2.0'
+ ],
subdirs : 'gupnp-av-1.0',
description : 'GObject-based AV specific UPnP library'
)
--
GitLab