summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-12-02 13:02:32 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-12-02 13:02:32 (GMT)
commit06f15bbcc42941e315aec086c4b238eb49cd25e3 (patch)
tree377ffe621182c1e48cf6c6683fd5abe7fee0bbc0 /configure
parentb3cfc1d7eab506cbdd6c579b12e0f2f265f5f2c5 (diff)
downloadcpython-06f15bbcc42941e315aec086c4b238eb49cd25e3.zip
cpython-06f15bbcc42941e315aec086c4b238eb49cd25e3.tar.gz
cpython-06f15bbcc42941e315aec086c4b238eb49cd25e3.tar.bz2
Compute thread headers through shell expansion in configure.
Fixes #485679.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 10 insertions, 2 deletions
diff --git a/configure b/configure
index a20911b..85aca3e 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
-# From configure.in Revision: 1.281
+# From configure.in Revision: 1.282
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.13
@@ -7513,9 +7513,16 @@ done
#fi
+
+for h in `(cd $srcdir;echo Python/thread_*.h)`
+do
+ THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
+done
+
+
SRCDIRS="Parser Grammar Objects Python Modules"
echo $ac_n "checking for build directories""... $ac_c" 1>&6
-echo "configure:7519: checking for build directories" >&5
+echo "configure:7526: checking for build directories" >&5
for dir in $SRCDIRS; do
if test ! -d $dir; then
mkdir $dir
@@ -7706,6 +7713,7 @@ s%@HAVE_GETHOSTBYNAME@%$HAVE_GETHOSTBYNAME%g
s%@LIBM@%$LIBM%g
s%@LIBC@%$LIBC%g
s%@UNICODE_OBJS@%$UNICODE_OBJS%g
+s%@THREADHEADERS@%$THREADHEADERS%g
s%@SRCDIRS@%$SRCDIRS%g
CEOF