mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 20:02:24 +01:00
https://gitlab.postmarketos.org/modem/81voltd Server-side implementation of IMS Data service on QMI/QRTR
28 lines
768 B
Diff
28 lines
768 B
Diff
Patch-Source: https://gitlab.postmarketos.org/modem/81voltd/-/merge_requests/4
|
|
---
|
|
From bbaece9c73494bc88b6581cc7fbe4d7cfa4eda1e Mon Sep 17 00:00:00 2001
|
|
From: Achill Gilgenast <achill@achill.org>
|
|
Date: Fri, 2 Jan 2026 19:01:52 +0100
|
|
Subject: [PATCH] build: find qrtr using pkgconf
|
|
|
|
---
|
|
meson.build | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/meson.build b/meson.build
|
|
index f5c7839..a7d6f42 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -2,7 +2,7 @@ project('81voltd', 'c', version : '1.1.0')
|
|
|
|
libmm = dependency('mm-glib')
|
|
libqmi = dependency('qmi-glib')
|
|
-libqrtr = meson.get_compiler('c').find_library('qrtr')
|
|
+libqrtr = dependency('qrtr')
|
|
|
|
qmic = find_program('qmic', required : false)
|
|
wrapper = files('qmic_wrapper.sh')
|
|
--
|
|
GitLab
|
|
|