diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-05-04 12:40:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-05-04 12:40:23 +0200 |
commit | 1e73b8dcab0a44b3357ba8070a1ae13d7323e83d (patch) | |
tree | 385234e83cc25f0841a23e6d277ba7d881706fd4 /m4/acx-pthread.m4 | |
parent | 449227d505edd52c24928b78da164435d61153ad (diff) |
Add -D_REENTRANT when building on Linux to emulate -pthread
Diffstat (limited to 'm4/acx-pthread.m4')
-rw-r--r-- | m4/acx-pthread.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/m4/acx-pthread.m4 b/m4/acx-pthread.m4 index ffa3dfa..204b32d 100644 --- a/m4/acx-pthread.m4 +++ b/m4/acx-pthread.m4 @@ -220,7 +220,9 @@ dnl fi flag=no case "${host_cpu}-${host_os}" in *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; - *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; + # CS: Add _REENTRANT in Linux to emulate -pthread. + # + *-linux* | *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; esac AC_MSG_RESULT(${flag}) if test "x$flag" != xno; then |