From: Jeff Trawick Date: Mon, 30 Sep 2013 13:56:20 +0000 (+0000) Subject: Follow up to r1527295: X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1f12803ceb1a8d087db440dc6c1b94e893bc90b;p=thirdparty%2Fapache%2Fhttpd.git Follow up to r1527295: ssl_engine_dh.c is still in 2.4.x, and (perhaps unexpectedly) this cmake list supports both trunk and 2.4.x for the time being. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1527570 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 3965939785b..643067ef2de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -426,6 +426,11 @@ SET(mod_ssl_extra_sources modules/ssl/ssl_util.c modules/ssl/ssl_util_ocsp.c modules/ssl/ssl_util_ssl.c modules/ssl/ssl_util_stapling.c ) +IF(${minorversion} STREQUAL "4") + SET(mod_ssl_extra_sources + ${mod_ssl_extra_sources} modules/ssl/ssl_engine_dh.c + ) +ENDIF() SET(mod_status_extra_defines STATUS_DECLARE_EXPORT) SET(mod_watchdog_install_lib 1) SET(mod_xml2enc_requires LIBXML2_FOUND)