summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-12-31 02:11:41 -0800
committerKaz Kylheku <kaz@kylheku.com>2018-12-31 02:11:41 -0800
commit01cba3d1044ab5199ab6108c9c7cc2a8f276819b (patch)
tree2b9eb3743a34434d9a22b74026b8779763519dcf /configure
parentd544a9955f30703e0355c4ade71f7846e0c9d616 (diff)
downloadtxr-01cba3d1044ab5199ab6108c9c7cc2a8f276819b.tar.gz
txr-01cba3d1044ab5199ab6108c9c7cc2a8f276819b.tar.bz2
txr-01cba3d1044ab5199ab6108c9c7cc2a8f276819b.zip
Get alloca from stdlib.h, if possible.
* configure: try <stdlib.h> 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 <stdlib.h> already includes <alloca.h>. That header contains an alloca macro which interfers with our subsequent #include ALLOCA_H directive: ALLOCA_H expands to <alloca.h> and the alloca token gets further expanded.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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 <<!
#include <$try_header>