You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Henry Jen <he...@ztune.net> on 2006/03/30 21:31:00 UTC

Re: [PATCH] include needed header files in apr_dbd.h

Henry Jen wrote:
> Hi,
> 
> When include apr_dbd.h without apu.h & apr_pools.h header first, 
> compiler generate errors.
> 
> This is minor issue, but should be fixed, I think. :-)
> 

Can someone take a minute commit this simple patch?

Cheers,
Henry
> 
> ------------------------------------------------------------------------
> 
> Index: include/apr_dbd.h
> ===================================================================
> --- include/apr_dbd.h	(revision 377888)
> +++ include/apr_dbd.h	(working copy)
> @@ -21,6 +21,9 @@
>  #ifndef APR_DBD_H
>  #define APR_DBD_H
>  
> +#include "apu.h"
> +#include "apr_pools.h"
> +
>  #ifdef __cplusplus
>  extern "C" {
>  #endif


Re: [PATCH] include needed header files in apr_dbd.h

Posted by Garrett Rooney <ro...@electricjellyfish.net>.
On 3/30/06, Henry Jen <he...@ztune.net> wrote:
> Henry Jen wrote:
> > Hi,
> >
> > When include apr_dbd.h without apu.h & apr_pools.h header first,
> > compiler generate errors.
> >
> > This is minor issue, but should be fixed, I think. :-)
> >
>
> Can someone take a minute commit this simple patch?


Committed in r390228, thanks.  Sorry for the delay, I though I had
committed this when it first came up, but apparently I forgot.

-garrett