diff options
| author | Ramsay Jones <ramsay@ramsayjones.plus.com> | 2025-04-17 00:18:29 +0100 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-04-16 20:43:44 -0700 |
| commit | 394c4dfd510b0612f66b08bbfa87324c01b33ac0 (patch) | |
| tree | e8eebb5065650bf8ac8a7d33cc066812f4aed01d | |
| parent | config.mak.uname: only set NO_REGEX on cygwin for v1.7 (diff) | |
| download | git-394c4dfd510b0612f66b08bbfa87324c01b33ac0.tar.gz git-394c4dfd510b0612f66b08bbfa87324c01b33ac0.zip | |
config.mak.uname: add HAVE_GETDELIM to the cygwin section
Cygwin has provided the getdelim() function as far back as (at least)
2011. The autoconf and meson builds enable the use of this symbol.
In order to have the same configuration for autoconf, meson and make,
enable the HAVE_GETDELIM build variable in the cygwin section of the
config.mak.uname file.
Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | config.mak.uname | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.mak.uname b/config.mak.uname index b6adce0bc4..1b3ba8a341 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -250,6 +250,7 @@ ifeq ($(uname_O),Cygwin) endif endif HAVE_DEV_TTY = YesPlease + HAVE_GETDELIM = YesPlease HAVE_ALLOCA_H = YesPlease NEEDS_LIBICONV = YesPlease NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes |
