diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-24 08:55:01 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-24 08:55:01 +0000 |
commit | ff0b1b2d0902fe9c27438f05089d0bf12b221a26 (patch) | |
tree | 9324a778c3203eadace7db5dda75024b5702f9ff /www/mod_jk/files/patch-common::jk_mt-h | |
parent | Update to version 2.30. (diff) |
Update mod_jk to 1.2.4 & add optional apache2 building
This update updates mod_jk to 1.2.4 and optionally creates
an apache2 module, if APACHE_PORT is set to ${PORTSDIR}/www/apache2
As a separate PR, I send a new slave port that will hopefully
see to it that there's a package at your favourite package
site for both versions of apache.
PR: ports/56657
Submitted by: Palle Girgensohn <girgen@pingpong.net>
Notes
Notes:
svn path=/head/; revision=89156
Diffstat (limited to 'www/mod_jk/files/patch-common::jk_mt-h')
-rw-r--r-- | www/mod_jk/files/patch-common::jk_mt-h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/mod_jk/files/patch-common::jk_mt-h b/www/mod_jk/files/patch-common::jk_mt-h new file mode 100644 index 000000000000..16fa29736d8a --- /dev/null +++ b/www/mod_jk/files/patch-common::jk_mt-h @@ -0,0 +1,11 @@ +--- common/jk_mt.h~ Thu Jun 6 03:23:25 2002 ++++ common/jk_mt.h Wed Sep 10 01:22:36 2003 +@@ -70,7 +70,7 @@ + * All WIN32 code is MT, UNIX code that uses pthreads is marked by the POSIX + * _REENTRANT define. + */ +-#if defined (WIN32) || defined(_REENTRANT) ++#if defined (WIN32) || ( defined(FREEBSD_THREAD_HACK) && defined(_THREAD_SAFE) ) + + /* + * Marks execution under MT compilation |