overlay coreos/user-patches: Drop user-patch for net-dialup/lrzsz

The update of the package pulled some other fix for the issue.
This commit is contained in:
Krzesimir Nowak 2024-08-08 15:10:14 +02:00
parent ce53b01895
commit ff89bf9639
2 changed files with 0 additions and 18 deletions

View File

@ -1,15 +0,0 @@
diff -r -u lrzsz-0.12.20/configure.in lrzsz-0.12.20-patched/configure.in
--- lrzsz-0.12.20/configure.in 2024-01-09 10:51:43.460543006 -0000
+++ lrzsz-0.12.20-patched/configure.in 2024-01-09 10:57:32.001193035 -0000
@@ -263,6 +263,11 @@
AC_SUBST(LDFLAGS)
AC_SUBST(LIBS)
+# a workaround for not AC_SUBSTed USE_INCLUDED_LIBINTL when disable-nls is passed
+if test "x${USE_NLS}" = xno ; then
+ USE_INCLUDED_LIBINTL=no
+ AC_SUBST(USE_INCLUDED_LIBINTL)
+fi
AC_DEFINE_UNQUOTED(LOCALEDIR,"$prefix/$DATADIRNAME", [LOCALEDIR])
AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl)

View File

@ -1,3 +0,0 @@
This patch should be upstreamed to Gentoo to fix build issues when nls
USE flag is masked (nls is used for internationalization). I think it
happens only when our SDK also has nls USE flag disabled.