Received: from out-174.mta1.migadu.com (out-174.mta1.migadu.com [IPv6:2001:41d0:203:375::ae]) by gbr-app-1.alpinelinux.org (Postfix) with ESMTPS id 1383B222F63 for <~alpine/apk-tools@lists.alpinelinux.org>; Mon, 19 Aug 2024 19:19:11 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=callcc.eu; s=key1; t=1724095148; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=mu3/W+ve7MFZMQ8xEALwel+YpohHAcFW19tyuJXTOko=; b=jwJJ6gpJmjPFGxj9o1RzKPn/ECcE4eQLdaSU/wsCas9R4ic6iN1wgR4JPJ73GPcEv5160X SWzuqgAJv8rLPNZ6EJ22YQF0HwrcFWCox7tkrHZ4WD/4x8s5qlvUL/MX+9YAybtS+5Pkzy 25BeCj8PY3AvbcIlL4+bAzxDoiNirmg= From: Erica Z To: ~alpine/apk-tools@lists.alpinelinux.org Cc: Erica Z Subject: [PATCH] meson: install missing headers Date: Mon, 19 Aug 2024 21:19:03 +0200 Message-ID: <20240819191903.32660-1-zerica@callcc.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT these are included from other header files that are already installed. --- src/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/meson.build b/src/meson.build index ec054f6..51a282a 100644 --- a/src/meson.build +++ b/src/meson.build @@ -37,9 +37,11 @@ libapk_src = [ ] libapk_headers = [ + 'adb.h', 'apk_applet.h', 'apk_atom.h', 'apk_blob.h', + 'apk_context.h', 'apk_crypto.h', 'apk_crypto_@0@.h'.format(crypto_backend), 'apk_ctype.h', @@ -56,6 +58,7 @@ libapk_headers = [ 'apk_solver_data.h', 'apk_solver.h', 'apk_tar.h', + 'apk_trust.h', 'apk_version.h', ] -- 2.46.0