Hello Paul Stavrides,
> I guess you are working on this now...(where is midgard-tinderbox when you
> need it?)
>
> I am getting some undefined bools in mod_midgard.c now...
>
> mod_midgard.c: In function `verify_user':
> mod_midgard.c:128: `TRUE' undeclared (first use in this function)
> mod_midgard.c:128: (Each undeclared identifier is reported only once
> mod_midgard.c:128: for each function it appears in.)
> mod_midgard.c: In function `midgard_create_request_config':
> mod_midgard.c:491: `FALSE' undeclared (first use in this function)
> mod_midgard.c: In function `midgard_page_walk':
> mod_midgard.c:701: `FALSE' undeclared (first use in this function)
> mod_midgard.c: In function `midgard_authenticate':
> mod_midgard.c:812: `TRUE' undeclared (first use in this function)
> apxs:Break: Command failed with rc=65536
> make: *** [mod_midgard.so] Error 1
We can either change these to 0 or 1, or do
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
in midgard.h. I prefer the latter.
Emile
--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org
To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]