You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2009/01/07 21:32:54 UTC

svn commit: r732470 - in /apr/apr-util/trunk: CHANGES include/apu_errno.h

Author: rpluem
Date: Wed Jan  7 12:32:53 2009
New Revision: 732470

URL: http://svn.apache.org/viewvc?rev=732470&view=rev
Log:
* 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

Modified:
    apr/apr-util/trunk/CHANGES
    apr/apr-util/trunk/include/apu_errno.h

Modified: apr/apr-util/trunk/CHANGES
URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/CHANGES?rev=732470&r1=732469&r2=732470&view=diff
==============================================================================
--- apr/apr-util/trunk/CHANGES [utf-8] (original)
+++ apr/apr-util/trunk/CHANGES [utf-8] Wed Jan  7 12:32:53 2009
@@ -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]
 

Modified: apr/apr-util/trunk/include/apu_errno.h
URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/include/apu_errno.h?rev=732470&r1=732469&r2=732470&view=diff
==============================================================================
--- apr/apr-util/trunk/include/apu_errno.h (original)
+++ apr/apr-util/trunk/include/apu_errno.h Wed Jan  7 12:32:53 2009
@@ -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" {