From 01cba3d1044ab5199ab6108c9c7cc2a8f276819b Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 31 Dec 2018 02:11:41 -0800 Subject: Get alloca from stdlib.h, if possible. * configure: try first for alloca. This should fix a build issue which happens on the Musl library and perhaps elsewhere. The problem on Musl is that #include already includes . That header contains an alloca macro which interfers with our subsequent #include ALLOCA_H directive: ALLOCA_H expands to and the alloca token gets further expanded. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 8cccdfc8..7e99d64d 100755 --- a/configure +++ b/configure @@ -2577,7 +2577,7 @@ done printf "Checking for alloca ... " -for try_header in alloca.h malloc.h ; do +for try_header in stdlib.h alloca.h malloc.h ; do cat > conftest.c < -- cgit v1.2.3