From 81adf76a26e4feaf5f8a1d5a44f2a5a617cffd84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 24 Nov 2009 22:06:08 +0100 Subject: [PATCH] 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. --- configure.ac | 1 + 1 file changed, 1 insertion(+) 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" ;; * )