$(APR)/include \
$(APRUTIL)/include \
$(AP_WORK)/include \
+ $(AP_WORK)/modules/aaa/ \
$(AP_WORK)/modules/filters/ \
$(AP_WORK)/modules/generators/ \
$(AP_WORK)/modules/http/ \
$(OBJDIR)/listen.o \
$(OBJDIR)/log.o \
$(OBJDIR)/main.o \
+ $(OBJDIR)/mod_authn_core.o \
+ $(OBJDIR)/mod_authn_default.o \
+ $(OBJDIR)/mod_authz_core.o \
+ $(OBJDIR)/mod_authz_default.o \
$(OBJDIR)/mod_authz_host.o \
$(OBJDIR)/mod_alias.o \
$(OBJDIR)/mod_dir.o \
print "#LoadModule auth_basic_module modules/authbasc.nlm"
print "#LoadModule auth_digest_module modules/authdigt.nlm"
print "#LoadModule authn_anon_module modules/authnano.nlm"
+ print "#LoadModule authn_dbd_module modules/authndbd.nlm"
print "#LoadModule authn_dbm_module modules/authndbm.nlm"
print "#LoadModule authn_default_module modules/authndef.nlm"
print "#LoadModule authn_file_module modules/authnfil.nlm"
+ print "#LoadModule authz_dbd_module modules/authzdbd.nlm"
print "#LoadModule authz_dbm_module modules/authzdbm.nlm"
print "#LoadModule authz_default_module modules/authzdef.nlm"
print "#LoadModule authz_groupfile_module modules/authzgrp.nlm"
print "#LoadModule authz_user_module modules/authzusr.nlm"
+ print "#LoadModule authnz_ldap_module modules/authnzldap.nlm"
+ print "#LoadModule ldap_module modules/utilldap.nlm"
print "#LoadModule asis_module modules/mod_asis.nlm"
print "LoadModule autoindex_module modules/autoindex.nlm"
print "#LoadModule cern_meta_module modules/cernmeta.nlm"
$(OBJDIR)/authbasc.nlm \
$(OBJDIR)/authdigt.nlm \
$(OBJDIR)/authnano.nlm \
- $(OBJDIR)/authnalias.nlm \
- $(OBJDIR)/authncore.nlm \
+ $(OBJDIR)/authndbd.nlm \
$(OBJDIR)/authndbm.nlm \
- $(OBJDIR)/authndef.nlm \
$(OBJDIR)/authnfil.nlm \
- $(OBJDIR)/authndbd.nlm \
- $(OBJDIR)/authzcore.nlm \
+ $(OBJDIR)/authzdbd.nlm \
$(OBJDIR)/authzdbm.nlm \
- $(OBJDIR)/authzdef.nlm \
$(OBJDIR)/authzgrp.nlm \
$(OBJDIR)/authzusr.nlm \
$(OBJDIR)/authzusr.nlm \
extern module http_module;
extern module so_module;
extern module mime_module;
+extern module authn_core_module;
+extern module authn_default_module;
+extern module authz_core_module;
+extern module authz_default_module;
extern module authz_host_module;
extern module negotiation_module;
extern module include_module;
&http_module,
&so_module,
&mime_module,
+ &authn_core_module,
+ &authn_default_module,
+ &authz_core_module,
+ &authz_default_module,
&authz_host_module,
&negotiation_module,
&include_module,
{"http_module", &http_module},
{"so_module", &so_module},
{"mime_module", &mime_module},
+ {"authn_core_module", &authn_core_module},
+ {"authn_default_module", &authn_default_module},
+ {"authz_core_module", &authz_core_module},
+ {"authz_default_module", &authz_default_module},
{"authz_host_module", &authz_host_module},
{"negotiation_module", &negotiation_module},
{"include_module", &include_module},
&http_module,
&so_module,
&mime_module,
+ &authn_core_module,
+ &authn_default_module,
+ &authz_core_module,
+ &authz_default_module,
&authz_host_module,
&negotiation_module,
&include_module,