mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 05:30:31 -04:00
People who wants to use mod_jk with apache2 must use mod_jk-apache2 commit monthes ago. PR: 56661 Submitted by: Palle Girgensohn <girgen@pingpong.net> Approved by: previous maintainer Reviewed/updated by: clement
20 lines
596 B
Text
20 lines
596 B
Text
--- include/jk_mutex.h~ Thu Jul 31 19:30:40 2003
|
|
+++ include/jk_mutex.h Wed Sep 10 01:33:27 2003
|
|
@@ -76,7 +76,7 @@
|
|
#include "apr_thread_mutex.h"
|
|
#elif defined( WIN32 )
|
|
#include <windows.h>
|
|
-#elif defined( _REENTRANT )
|
|
+#elif defined( _THREAD_SAFE ) && defined ( FREEBSD_THREAD_HACK )
|
|
#include <pthread.h>
|
|
#endif
|
|
|
|
@@ -122,7 +122,7 @@
|
|
apr_thread_mutex_t *threadMutex;
|
|
#elif defined( WIN32 )
|
|
CRITICAL_SECTION threadMutex;
|
|
-#elif defined( _REENTRANT )
|
|
+#elif defined( _THREAD_SAFE ) && defined ( FREEBSD_THREAD_HACK )
|
|
pthread_mutex_t threadMutex;
|
|
#else
|
|
void *threadMutex;
|