Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libfwnt for openSUSE:Factory checked in at 2024-11-03 07:17:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libfwnt (Old) and /work/SRC/openSUSE:Factory/.libfwnt.new.2020 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libfwnt" Sun Nov 3 07:17:41 2024 rev:21 rq:1220306 version:20240415 Changes: -------- --- /work/SRC/openSUSE:Factory/libfwnt/libfwnt.changes 2024-04-16 20:07:24.732319331 +0200 +++ /work/SRC/openSUSE:Factory/.libfwnt.new.2020/libfwnt.changes 2024-11-03 07:18:02.773039399 +0100 @@ -1,0 +2,5 @@ +Sat Nov 2 15:40:15 UTC 2024 - Jan Engelhardt <[email protected]> + +- Add 0001-Added-missing-declaration-of-function-used-externall.patch + +------------------------------------------------------------------- New: ---- 0001-Added-missing-declaration-of-function-used-externall.patch BETA DEBUG BEGIN: New: - Add 0001-Added-missing-declaration-of-function-used-externall.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libfwnt.spec ++++++ --- /var/tmp/diff_new_pack.JcN9ty/_old 2024-11-03 07:18:03.317061889 +0100 +++ /var/tmp/diff_new_pack.JcN9ty/_new 2024-11-03 07:18:03.317061889 +0100 @@ -30,6 +30,7 @@ Source2: https://github.com/libyal/libfwnt/releases/download/%version/libfwnt-alpha-%version.tar.gz.asc Source3: %name.keyring Source11: Locale_identifier_LCID.pdf +Patch1: 0001-Added-missing-declaration-of-function-used-externall.patch BuildRequires: %python_module devel BuildRequires: %python_module setuptools BuildRequires: c_compiler ++++++ 0001-Added-missing-declaration-of-function-used-externall.patch ++++++ >From d8b74e872ae054f16c55c144db9799297a7e6d0a Mon Sep 17 00:00:00 2001 From: Joel Uckelman <[email protected]> Date: Wed, 3 Jul 2024 17:44:20 +0100 Subject: [PATCH] Added missing declaration of function used externally. References: https://github.com/libyal/libfwnt/pull/14 --- include/libfwnt.h.in | 4 ++++ libfwnt/libfwnt_locale_identifier.h | 3 +++ 2 files changed, 7 insertions(+) diff --git a/include/libfwnt.h.in b/include/libfwnt.h.in index 3c8c6aa..43e3806 100644 --- a/include/libfwnt.h.in +++ b/include/libfwnt.h.in @@ -128,6 +128,10 @@ int libfwnt_error_backtrace_sprint( * Locale identifier (LCID) functions * ------------------------------------------------------------------------- */ +LIBFWNT_EXTERN \ +const char *libfwnt_locale_identifier_language_tag_get_identifier( + uint16_t lcid_language_tag ); + /* ------------------------------------------------------------------------- * Security descriptor functions * ------------------------------------------------------------------------- */ diff --git a/libfwnt/libfwnt_locale_identifier.h b/libfwnt/libfwnt_locale_identifier.h index cfa040d..ebea8bd 100644 --- a/libfwnt/libfwnt_locale_identifier.h +++ b/libfwnt/libfwnt_locale_identifier.h @@ -25,6 +25,8 @@ #include <common.h> #include <types.h> +#include "libfwnt_extern.h" + #if defined( __cplusplus ) extern "C" { #endif @@ -46,6 +48,7 @@ struct libfwnt_locale_identifier_language_tag const char *description; }; +LIBFWNT_EXTERN \ const char *libfwnt_locale_identifier_language_tag_get_identifier( uint16_t lcid_language_tag ); -- 2.47.0
