[PATCH] Fix signatures for getenv/getopt

2025-03-22 Thread Khem Raj
GCC-15 complains about missing parameters, this gets found out when using non-glibc ( e.g. musl ) C library Fixes lib/fnmatch.c:124:14: error: conflicting types for 'getenv'; have 'char *(void)' | 124 | extern char *getenv (); | | ^~ src/getopt.c: Define parameters of get

[PATCH] Fix signatures for getenv/getopt

2025-03-22 Thread Khem Raj
GCC-15 complains about missing parameters, this gets found out when using non-glibc ( e.g. musl ) C library Fixes lib/fnmatch.c:124:14: error: conflicting types for 'getenv'; have 'char *(void)' | 124 | extern char *getenv (); | | ^~ src/getopt.c: Define parameters of get

Re: Ability to print the make database as json - experimental

2025-03-22 Thread Tim Murphy
On Thu, 20 Mar 2025 at 21:07, David A. Wheeler wrote: > > > > On Mar 18, 2025, at 1:21 PM, Tim Murphy wrote: > > > > I've recently updated and rebased my experimental fork of make with the > branch that dumps the internal database of the makefile to JSON format > files. > > I would *dearly* love