Commit 8a5eb315 authored by Ryan Bloom's avatar Ryan Bloom
Browse files

Allow the auth modules to load into the server.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87510 13f79535-47bb-0310-9956-ffa450edef68
parent fe0947e9
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -6,15 +6,15 @@ APACHE_MODPATH_INIT(aaa)

APACHE_MODULE(access, host-based access control, , , yes)
APACHE_MODULE(auth, user-based access control, , , yes)
APACHE_MODULE(auth_anon, anonymous user access, , , no)
APACHE_MODULE(auth_dbm, DBM-based access databases, , , no)
APACHE_MODULE(auth_anon, anonymous user access, , anon_auth, no)
APACHE_MODULE(auth_dbm, DBM-based access databases, , dbm_auth, no)

APACHE_MODULE(auth_db, DB-based access databases, , , no, [
APACHE_MODULE(auth_db, DB-based access databases, , db_auth, no, [
  AC_CHECK_HEADERS(db.h)
  AC_CHECK_LIB(db,main)
]) 

APACHE_MODULE(auth_digest, digests, , , no)
APACHE_MODULE(auth_digest, digests, , digest_auth, no)

LTFLAGS="$LTFLAGS -export-dynamic"