From 339a64a7505492bf6fa495a7c324d377366fa20c Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Tue, 7 Apr 2026 20:58:12 -0400 Subject: [PATCH] groff: remove unused patch Was missed in 50fca07b8e98d987eab929212651a9e004e959e7. --- .../fix-underspecified-getenv-prototype.patch | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 pkgs/by-name/gr/groff/fix-underspecified-getenv-prototype.patch diff --git a/pkgs/by-name/gr/groff/fix-underspecified-getenv-prototype.patch b/pkgs/by-name/gr/groff/fix-underspecified-getenv-prototype.patch deleted file mode 100644 index 663f81f41c93..000000000000 --- a/pkgs/by-name/gr/groff/fix-underspecified-getenv-prototype.patch +++ /dev/null @@ -1,24 +0,0 @@ -commit e49b934b77a76443005f92a737dae7370b50e5f7 -Author: G. Branden Robinson -Date: Tue Jan 23 19:39:03 2024 -0600 - - [libgroff]: Fix underspecified getenv() prototype. - - * src/libs/libgroff/getopt.c: Do it. Seen when building groff on a - non-glibc-based system (clang 17 complains). - ---- -Link: https://lists.libreplanet.org/archive/html/groff-commit/2024-01/msg00103.html -diff --git a/src/libs/libgroff/getopt.c b/src/libs/libgroff/getopt.c -index 6d4ee5b3a..77f8da1ed 100644 ---- a/src/libs/libgroff/getopt.c -+++ b/src/libs/libgroff/getopt.c -@@ -124,7 +124,7 @@ static struct _getopt_data getopt_data; - whose names are inconsistent. */ - - #ifndef getenv --extern char *getenv (); -+extern char *getenv (const char *); - #endif - - #endif /* not __GNU_LIBRARY__ */