summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrpluem <rpluem@13f79535-47bb-0310-9956-ffa450edef68>2009-01-07 20:32:53 +0000
committerrpluem <rpluem@13f79535-47bb-0310-9956-ffa450edef68>2009-01-07 20:32:53 +0000
commit86bf1007bfdafae33a352c7bcaed4c49ccaf91db (patch)
tree3da41ef0081deb4999ae24f249b40726340eee33
parentbe7050b04708487e1091d0fe716d38c6368bbb8f (diff)
downloadlibapr-util-86bf1007bfdafae33a352c7bcaed4c49ccaf91db.tar.gz
* Do not include apr.h and apr_errno.h from system search path in apu_errno.h.
PR: 46487 Submitted by: Rainer Jung <rainer.jung kippdata.de> Reviewed by: rpluem git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@732470 13f79535-47bb-0310-9956-ffa450edef68
-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" {