diff options
author | Thies C. Arntzen <thies@php.net> | 2000-04-15 17:06:21 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-04-15 17:06:21 +0000 |
commit | 38c2b8ec636846c9c13e643199cea20232f3fe1f (patch) | |
tree | f3703d2a410115d74b1c5a3aa34051da0979f9fc /TSRM | |
parent | 5097f642567a939da02544dcc76c89c58786fca8 (diff) | |
download | php-git-38c2b8ec636846c9c13e643199cea20232f3fe1f.tar.gz |
hpux needs _REENTRANT
Diffstat (limited to 'TSRM')
-rw-r--r-- | TSRM/threads.m4 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/TSRM/threads.m4 b/TSRM/threads.m4 index 760499e547..f604346bf8 100644 --- a/TSRM/threads.m4 +++ b/TSRM/threads.m4 @@ -45,6 +45,8 @@ AC_DEFUN(PTHREADS_FLAGS,[ PTHREAD_FLAGS="-D_THREAD_SAFE";; *irix*) PTHREAD_FLAGS="-D_POSIX_THREAD_SAFE_FUNCTIONS";; + *hpux*) + PTHREAD_FLAGS="-D_REENTRANT";; esac if test -n "$PTHREAD_FLAGS"; then |