Re: [Mod-auth-devel] mod_authn_dbi missing mod_auth.h
Brought to you by:
firechipmunk,
honx
From: Paul Q. <ch...@fo...> - 2004-06-08 16:20:39
|
On Tue, 2004-06-08 at 07:58 -0700, John L. Poole wrote: > [This was posted to the mod-auth-users list, as well; as a > work-around, I located a file named mod_auth.h through Google and > added it to the ../src directory and then mod_authn_dbi compiled.] > > the ./src/mod.authn.dbi.c references a header file at line 46: > > #include "mod_auth.h" > > which is not included in the package nor was I able to find it in the > installation of apache or apache2 on a Gentoo Linux system. > > Was this header file ommitted, or is there a dependency here? > If the latter, where do I obtain the mod_auth.h file? You are attempting to build mod_authn_dbi against Apache 2.0.X, and not Apache 2.1.0-CVS which is the minimum required version. The CVS -HEAD versions of Apache or the 'development branch', has a new authentication system. Our module is not compatible with any 'released' version of Apache. You must use the 2.1.0 from Apache's CVS to use this module. Thanks for trying it out :) Even if you added the header, the module will not work unless it is being used on Apache 2.1.0. (would need to replace the entire authentication system to make it work on 2.0.XX). -Paul Querna |