From 4bbd974426e8abfc5cdc711aed53e5f9fceb74ca Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Mon, 15 Mar 2010 20:40:14 +0000 Subject: [PATCH] 2010-03-15 21:40 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbthread.h ! added workaround for problems with static __thread variables in Open64 C compiler --- harbour/ChangeLog | 5 +++++ harbour/include/hbthread.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c1764e920d..e67db7df8e 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-03-15 21:40 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/include/hbthread.h + ! added workaround for problems with static __thread variables in + Open64 C compiler + 2010-03-15 21:31 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * external/bzip2/Makefile * external/bzip2/bzip2.dif diff --git a/harbour/include/hbthread.h b/harbour/include/hbthread.h index fb54413449..a25ed45669 100644 --- a/harbour/include/hbthread.h +++ b/harbour/include/hbthread.h @@ -442,7 +442,7 @@ extern HB_BOOL hb_threadMutexSyncWait( PHB_ITEM pItemMtx, HB_ULONG ulMilliSec, P ( __GLIBC__ > 2 || ( __GLIBC__ == 2 && __GLIBC_MINOR__ >= 6 ) ) && \ defined( HB_OS_LINUX ) && \ ( defined( __i386__ ) || defined( __x86_64__ ) ) && \ - ( !defined( __OPENCC__ ) || !defined( HB_DYNLIB ) ) + !defined( __OPENCC__ ) # define HB_USE_TLS # endif #endif