summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES3
-rw-r--r--include/apu_errno.h4
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index a7e94c1a..de83a1f3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
-*- coding: utf-8 -*-
Changes with APR-util 1.4.0
+ *) Do not include apr.h and apr_errno.h from system search path in
+ apu_errno.h. PR 46487 [Rainer Jung <rainer.jung kippdata.de>]
+
*) Fix the saving of the old LIBS, CPPFLAGS and LDFLAGS when OpenSSL
and NSS are detected. [Graham Leggett, Ruediger Pluem]
diff --git a/include/apu_errno.h b/include/apu_errno.h
index 45fabf66..c0a8ec7d 100644
--- a/include/apu_errno.h
+++ b/include/apu_errno.h
@@ -22,8 +22,8 @@
* @brief APR-Util Error Codes
*/
-#include <apr.h>
-#include <apr_errno.h>
+#include "apr.h"
+#include "apr_errno.h"
#ifdef __cplusplus
extern "C" {