From 66b5916e89c8ad40d1daa850fc326aefea121625 Mon Sep 17 00:00:00 2001 From: Brian Havard Date: Sun, 19 Mar 2000 13:28:42 +0000 Subject: [PATCH] Test for AP_USE_HSREGEX, not USE_HSREGEX, as that's what actually gets defined (in ap_config_auto.h) when using the bundled hsregex. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84795 13f79535-47bb-0310-9956-ffa450edef68 --- include/ap_config.h | 2 +- include/httpd.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ap_config.h b/include/ap_config.h index cd356e2168..ecec55f504 100644 --- a/include/ap_config.h +++ b/include/ap_config.h @@ -1089,7 +1089,7 @@ typedef int rlim_t; #ifdef WIN32 #include "../include/hsregex.h" -#elif defined(USE_HSREGEX) +#elif defined(AP_USE_HSREGEX) #include "hsregex.h" #else #include diff --git a/include/httpd.h b/include/httpd.h index 614517684b..a34490cf6b 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -942,7 +942,7 @@ API_EXPORT(char *) ap_uudecode(ap_context_t *p, const char *bufcoded); API_EXPORT(char *) ap_uuencode(ap_context_t *p, char *string); /* Regexes */ -#if defined(USE_HSREGEX) || defined(WIN32) +#if defined(AP_USE_HSREGEX) || defined(WIN32) #include "hsregex.h" #else #include -- 2.50.1