1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* configure.in (_THREAD_SAFE): Define when pthreads are enabled in

order to get thread safe versions of glibc functions.
This commit is contained in:
Mikael Djurfeldt 2002-12-10 17:54:01 +00:00
parent 094b640d77
commit ad280ae0a3
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
* configure.in (_THREAD_SAFE): Define when pthreads are enabled in
order to get thread safe versions of glibc functions.
2002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
* configure.in: Temporarily replaced "copt" threads option with new

View file

@ -649,6 +649,10 @@ case "$with_threads" in
[Define if using pthread multithreading.])
with_threads="pthreads",
with_threads="null")
if test $GCC = yes; then
AC_DEFINE(_THREAD_SAFE, 1,
[Use thread safe versions of GNU Libc functions.])
fi
;;
esac