From: Bruno Haible Date: Tue, 28 Apr 2026 09:58:06 +0000 (+0200) Subject: build: Drop a gnulib patch that is no longer needed. X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=HEAD;p=thirdparty%2Fgettext.git build: Drop a gnulib patch that is no longer needed. * gnulib-local/lib/regex_internal.h.diff: Remove file. * gnulib-local/Makefile.am (EXTRA_DIST): Remove it. --- diff --git a/gnulib-local/Makefile.am b/gnulib-local/Makefile.am index b54b7baba..01d4dd7f5 100644 --- a/gnulib-local/Makefile.am +++ b/gnulib-local/Makefile.am @@ -1,5 +1,5 @@ ## Makefile for the gnulib-local directory of GNU gettext -## Copyright (C) 2006-2025 Free Software Foundation, Inc. +## Copyright (C) 2006-2026 Free Software Foundation, Inc. ## ## 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 @@ -143,7 +143,6 @@ lib/markup.c \ lib/markup.h \ lib/obstack.h.diff \ lib/progname.h.diff \ -lib/regex_internal.h.diff \ lib/unistd.in.h.diff \ lib/xerror.c \ lib/xerror.h \ diff --git a/gnulib-local/lib/regex_internal.h.diff b/gnulib-local/lib/regex_internal.h.diff deleted file mode 100644 index b546622bd..000000000 --- a/gnulib-local/lib/regex_internal.h.diff +++ /dev/null @@ -1,19 +0,0 @@ -*** lib/regex_internal.h.orig Mon May 24 12:36:55 2010 ---- lib/regex_internal.h Mon May 24 12:35:46 2010 -*************** -*** 468,474 **** - # define MAX(a,b) ((a) < (b) ? (b) : (a)) - #endif - -! #define re_malloc(t,n) ((t *) malloc ((n) * sizeof (t))) - #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t))) - #define re_free(p) free (p) - ---- 468,474 ---- - # define MAX(a,b) ((a) < (b) ? (b) : (a)) - #endif - -! #define re_malloc(t,n) ((t *) malloc ((n) > 0 ? (n) * sizeof (t) : 1)) - #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t))) - #define re_free(p) free (p) -