summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-11-24 22:06:08 +0100
committerLudovic Courtès <ludo@gnu.org>2009-11-24 22:06:08 +0100
commit81adf76a26e4feaf5f8a1d5a44f2a5a617cffd84 (patch)
treeb113193329b4755dd4bdbf6b0cbeecae3955ae48 /configure.ac
parentc3b16a5d8e31b78b69a6937ff6024d0ff5dbfd8c (diff)
downloadguile-81adf76a26e4feaf5f8a1d5a44f2a5a617cffd84.tar.gz
Fix compilation `--without-threads'.
* configure.ac: For `--without-threads' and `--with-threads=null', set `SCM_I_GSC_HAVE_THREAD_STORAGE_CLASS=0'. This fixes compilation of `gen-scmconfig.c' in these cases.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index bbf9e42f3..0731d2ab6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1331,6 +1331,7 @@ case "$with_threads" in
;;
"no" | "null")
SCM_I_GSC_USE_NULL_THREADS=1
+ SCM_I_GSC_HAVE_THREAD_STORAGE_CLASS=0
with_threads="null-threads"
;;
* )