mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 21:47:45 +00:00

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).
25 lines
951 B
Diff
25 lines
951 B
Diff
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
|
|
|