diff options
author | ohauer <ohauer@FreeBSD.org> | 2013-03-06 06:00:14 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2013-03-06 06:00:14 +0800 |
commit | 70c94229d18b30f21674fa0e56a3e48cdee38cfb (patch) | |
tree | 2f5492211c494bf82cb6bbe8bd2993601f44415c /www | |
parent | 6476b2a177bf9e654ac7e2cd30238e3aab246cf0 (diff) | |
download | freebsd-ports-gnome-70c94229d18b30f21674fa0e56a3e48cdee38cfb.tar.gz freebsd-ports-gnome-70c94229d18b30f21674fa0e56a3e48cdee38cfb.tar.zst freebsd-ports-gnome-70c94229d18b30f21674fa0e56a3e48cdee38cfb.zip |
- disable new ab SSL extensions until a better way is found.
only builds with OpenSSL from ports are affected which is
not default, so no version bump.
Noted on the apache@ list by Jukka A. Ukkonen <jau@iki.fi>
and per PR by Arnis Rozentals <admin@liepajaport.lv>
PR: 176659
Diffstat (limited to 'www')
-rw-r--r-- | www/apache22/files/patch-support__ab.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www/apache22/files/patch-support__ab.c b/www/apache22/files/patch-support__ab.c index b035673752be..ab58062733d7 100644 --- a/www/apache22/files/patch-support__ab.c +++ b/www/apache22/files/patch-support__ab.c @@ -1,5 +1,17 @@ --- ./support/ab.c.orig 2010-01-07 10:11:53.000000000 -0500 +++ ./support/ab.c 2010-05-06 19:37:54.262732305 -0400 +@@ -200,9 +200,11 @@ + #else + #define AB_SSL_CIPHER_CONST + #endif ++/* prevent build issues with openssl from ports + #ifdef SSL_OP_NO_TLSv1_2 + #define HAVE_TLSV1_X + #endif ++*/ + #endif + + #include <math.h> @@ -221,13 +221,18 @@ /* maximum number of requests on a time limited test */ #define MAX_REQUESTS (INT_MAX > 50000 ? 50000 : INT_MAX) |