Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 93014 invoked from network); 3 Nov 2009 19:48:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Nov 2009 19:48:20 -0000 Received: (qmail 27301 invoked by uid 500); 3 Nov 2009 19:48:19 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 27218 invoked by uid 500); 3 Nov 2009 19:48:19 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 27209 invoked by uid 99); 3 Nov 2009 19:48:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Nov 2009 19:48:19 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [194.242.35.75] (HELO dns-factory.at) (194.242.35.75) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Nov 2009 19:48:11 +0000 Received: from [172.17.100.14] apache@gknw.net [84.63.44.136] by dns-factory.at with NetMail SMTP Agent $Revision: 8582 $ on Novell NetWare via secured & encrypted transport (TLS); Tue, 03 Nov 2009 20:47:41 +0100 Message-ID: <4AF088DB.9020708@apache.org> Date: Tue, 03 Nov 2009 20:47:39 +0100 From: Guenter Knauf User-Agent: Thunderbird 2.0.0.23 (X11/20090817) MIME-Version: 1.0 To: dev@httpd.apache.org Subject: Re: svn commit: r832496 - in /httpd/httpd/trunk/modules/ssl: ssl_toolkit_compat.h ssl_util_stapling.c References: <20091103181933.C27CC238889D@eris.apache.org> In-Reply-To: <20091103181933.C27CC238889D@eris.apache.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi Sander, sctemme@apache.org schrieb: > Author: sctemme > Date: Tue Nov 3 18:19:33 2009 > New Revision: 832496 >=20 > URL: http://svn.apache.org/viewvc?rev=3D832496&view=3Drev > Log: > We now check for OCSP support in configure, so we can lose an OpenSSL v= ersion > number check. Use a type safe STACK. I was just discussing this with Ruediger, and I introduced the version number check because this also works with non-configure platforms like NetWare and Win32; it would be better to remove the configure check, though we were unsure if something else might use HAVE_OCSP (though I doubt); if we like to stay with the configure check for whatever reason then please lets do: #ifndef HAVE_OCSP #if OPENSSL_VERSION_NUMBER >=3D 0x00907000 #define HAVE_OCSP #include #include #endif #endif thanks, G=C3=BCn.