mirror of
https://github.com/RGBCube/serenity
synced 2025-07-29 20:17:46 +00:00
Ports/tar: Update to version 1.35
This version requires the gettext port as a dependency. In addition to that, this release has a bug in which it doesn't include libintl and libiconv properly when building the program. Therefore, we add a patch that was originally made by Sergey Poznyakoff after the report of this bug (savannah bug #64441).
This commit is contained in:
parent
ec0bf937a2
commit
9b61339261
4 changed files with 37 additions and 3 deletions
25
Ports/tar/patches/0001-Fix-savannah-bug-64441.patch
Normal file
25
Ports/tar/patches/0001-Fix-savannah-bug-64441.patch
Normal file
|
@ -0,0 +1,25 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Sergey Poznyakoff <gray@gnu.org>
|
||||
Date: Tue, 18 Jul 2023 17:02:23 +0300
|
||||
Subject: [PATCH] Fix savannah bug #64441
|
||||
|
||||
Release 1.35 has a bug in which it doesn't include libintl and libiconv
|
||||
properly. Add the libiconv libraries to the build system.
|
||||
---
|
||||
src/Makefile.in | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/Makefile.in b/src/Makefile.in
|
||||
index 4ff186d6c005419f8cfd70addceb440127e5f4a6..751d5054ea05d5e718c58b5c570b275dddc4e5be 100644
|
||||
--- a/src/Makefile.in
|
||||
+++ b/src/Makefile.in
|
||||
@@ -1793,7 +1793,8 @@ AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
|
||||
tar_LDADD = $(LIBS) ../lib/libtar.a ../gnu/libgnu.a\
|
||||
$(LIB_ACL) $(LIB_CLOCK_GETTIME) $(LIB_EACCESS)\
|
||||
$(LIB_GETRANDOM) $(LIB_HARD_LOCALE) $(FILE_HAS_ACL_LIB) $(LIB_MBRTOWC)\
|
||||
- $(LIB_SELINUX) $(LIB_SETLOCALE_NULL)
|
||||
+ $(LIB_SELINUX) $(LIB_SETLOCALE_NULL) \
|
||||
+ $(LIBINTL) $(LIBICONV)
|
||||
|
||||
all: all-am
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue