From a54f7fbbe641642f45edc2dbcd51ca748608ebd8 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Tue, 14 Aug 2018 21:25:54 +0000 Subject: [PATCH] don't use workaround on trunk it breaks the build w/ maintainer mode. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1838054 13f79535-47bb-0310-9956-ffa450edef68 --- modules/md/mod_md.c | 3 +++ modules/md/mod_md_os.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/modules/md/mod_md.c b/modules/md/mod_md.c index 249a0f000e5..2f682835cd2 100644 --- a/modules/md/mod_md.c +++ b/modules/md/mod_md.c @@ -19,9 +19,12 @@ #include #include +#include +#if !AP_MODULE_MAGIC_AT_LEAST(20180720, 5) #ifndef AP_ENABLE_EXCEPTION_HOOK #define AP_ENABLE_EXCEPTION_HOOK 0 #endif +#endif #include #include #include diff --git a/modules/md/mod_md_os.c b/modules/md/mod_md_os.c index f96d5667c0a..6f0b121e1ee 100644 --- a/modules/md/mod_md_os.c +++ b/modules/md/mod_md_os.c @@ -17,9 +17,12 @@ #include #include +#include +#if !AP_MODULE_MAGIC_AT_LEAST(20180720, 5) #ifndef AP_ENABLE_EXCEPTION_HOOK #define AP_ENABLE_EXCEPTION_HOOK 0 #endif +#endif #include #include -- 2.47.3