public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Cc: Adolf Belka <adolf.belka@ipfire.org>
Subject: [PATCH] libtirpc: Update to version 1.3.7
Date: Tue,  2 Sep 2025 09:30:43 +0200	[thread overview]
Message-ID: <20250902073044.1675-3-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20250902073044.1675-1-adolf.belka@ipfire.org>

- Update from version 1.3.6 to 1.3.7
- Update of rootfile not required
- Changelog
    1.3.7
    Add conditional version script support
	     This patch adds conditional symbol versioning to libtirpc, allowing
	      GSS-API, DES crypto, and RPC database symbols to be conditionally
	      included in the version script based on build configuration.
	     LLD is strict about undefined symbols referenced in a version script.
	      Some libtirpc symbols (rpcsec_gss, old DES helpers, rpc database
	      helpers) are optional and may not be built depending on configure
	      options or missing deps. GNU ld tolerated this; LLD errors out.
	     This change keeps the canonical symbol map in src/libtirpc.map, but
	      adds a make-time rule to generate a filtered copy
	      where names from disabled features are deleted. The lib is then linked
	      against the generated linker map file.
	     Fixes linking errors when these features are not available.
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    Convert old-style function definitions into modern-style definitions
	     With newer compilers (gcc 15.1.1) -Wold-style-definition
	     flag is set by default which causes warnings for
	     most of the functions in these files.
	        warning: old-style function definition [-Wold-style-definition]
	     The warnings are remove by converting the old-style
	     function definitions into modern-style definitions
    update signal and key_call declarations to allow compile with gcc-15
	     Follow up patch addressing the following declarations:
	       sed -n 75,77p libtirpc-1.3.6/src/key_call.c
	       cryptkeyres *(*__key_encryptsession_pk_LOCAL)() = 0;
	       cryptkeyres *(*__key_decryptsession_pk_LOCAL)() = 0;
	       des_block *(*__key_gendes_LOCAL)() = 0;
    Update declarations to allow compile with gcc-15
	     This patch fixes some of the compile errors with gcc 15-20241117.
	     In addition the follow declarations need to be fixed:
	       sed -n 75,77p libtirpc-1.3.6/src/key_call.c
	       cryptkeyres *(*__key_encryptsession_pk_LOCAL)() = 0;
	       cryptkeyres *(*__key_decryptsession_pk_LOCAL)() = 0;
	       des_block *(*__key_gendes_LOCAL)() = 0;
    Revert "getnetconfig.c: free linep to avoid memory leakage"
	     This reverts commit f138e68e7ffefa3f4d71857ddb137fff877fd1d0.
	     There was no memory leak and freeing allocated memory is not a good thing
    getnetconfig.c: free linep to avoid memory leakage

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/libtirpc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/libtirpc b/lfs/libtirpc
index c00668998..abb1509b0 100644
--- a/lfs/libtirpc
+++ b/lfs/libtirpc
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = Transport Independent RPC Library
 
-VER        = 1.3.6
+VER        = 1.3.7
 
 THISAPP    = libtirpc-$(VER)
 DL_FILE    = $(THISAPP).tar.bz2
@@ -45,7 +45,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 521e1e3d2ceefd668f1b0d52b7c0342b97952d322eeb7bf740bb1eb1fb88a14b0a2fce57f07a9fd3797d289f57f511085924bba3d8984f15c799468d30f47500
+$(DL_FILE)_BLAKE2 = b6a42add32c1a8bef4d974bb6c527131c0215179a303360d902110b03ce2217280efcb8dcad3a4da00f7ab971a1376e0bc30d6e3ecf6f98f1d4c2161a9276f86
 
 install : $(TARGET)
 
-- 
2.51.0



  parent reply	other threads:[~2025-09-02  7:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-02  7:30 [PATCH] core198: Ship pcre2 Adolf Belka
2025-09-02  7:30 ` [PATCH] harfbuzz: Update to version 11.4.5 Adolf Belka
2025-09-02  7:30 ` Adolf Belka [this message]
2025-09-02  7:30 ` [PATCH] pcre2: Update to version 10.46 Adolf Belka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250902073044.1675-3-adolf.belka@ipfire.org \
    --to=adolf.belka@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox