Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-9]: src/external/gpl2/texinfo/dist Pull up following revision(s) ...



details:   https://anonhg.NetBSD.org/src/rev/fe211a708a21
branches:  netbsd-9
changeset: 961929:fe211a708a21
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Apr 25 18:29:56 2021 +0000

description:
Pull up following revision(s) (requested by cjep in ticket #1253):

        external/gpl2/texinfo/dist/configure: revision 1.3

Hack to get the "has ANSI C headers" check to pass on newer versions
of clang as bundled with Xcode.  If someone really cares about ensuring
NetBSD's host tools build on a system without <stdlib.h>, then I'm sure
that enterprising individual will also find a super #correct fix for
this specific problem.

diffstat:

 external/gpl2/texinfo/dist/configure |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (11 lines):

diff -r e090ecaac04e -r fe211a708a21 external/gpl2/texinfo/dist/configure
--- a/external/gpl2/texinfo/dist/configure      Sun Apr 25 11:15:14 2021 +0000
+++ b/external/gpl2/texinfo/dist/configure      Sun Apr 25 18:29:56 2021 +0000
@@ -3657,6 +3657,7 @@
 cat >>conftest.$ac_ext <<_ACEOF
 /* end confdefs.h.  */
 #include <ctype.h>
+#include <stdlib.h>
 #if ((' ' & 0x0FF) == 0x020)
 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))



Home | Main Index | Thread Index | Old Index