1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

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.
This commit is contained in:
Ludovic Courtès 2009-11-24 22:06:08 +01:00
parent c3b16a5d8e
commit 81adf76a26

View file

@ -1331,6 +1331,7 @@ case "$with_threads" in
;; ;;
"no" | "null") "no" | "null")
SCM_I_GSC_USE_NULL_THREADS=1 SCM_I_GSC_USE_NULL_THREADS=1
SCM_I_GSC_HAVE_THREAD_STORAGE_CLASS=0
with_threads="null-threads" with_threads="null-threads"
;; ;;
* ) * )