Received: (from majordom@localhost) by hyperreal.org (8.8.5/8.8.5) id PAA10572; Sun, 31 Aug 1997 15:36:29 -0700 (PDT) Received: (from randy@localhost) by hyperreal.org (8.8.5/8.8.5) id PAA10566 for apache-cvs; Sun, 31 Aug 1997 15:36:27 -0700 (PDT) Date: Sun, 31 Aug 1997 15:36:27 -0700 (PDT) From: Randy Terbush Message-Id: <199708312236.PAA10566@hyperreal.org> To: apache-cvs@hyperreal.org Subject: cvs commit: apachen/src/modules/standard Makefile.tmpl mod_auth_msql.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org randy 97/08/31 15:36:26 Modified: src CHANGES Configuration.tmpl src/modules/standard Makefile.tmpl Removed: src/modules/standard mod_auth_msql.c Log: Remove mod_auth_msql from the distribution. Note in changes references a URL that is not yet active, pending Brian's changes to DNS. Revision Changes Path 1.425 +7 -0 apachen/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apachen/src/CHANGES,v retrieving revision 1.424 retrieving revision 1.425 diff -u -r1.424 -r1.425 --- CHANGES 1997/08/28 01:38:48 1.424 +++ CHANGES 1997/08/31 22:36:21 1.425 @@ -1,5 +1,12 @@ Changes with Apache 1.3a2 + *) Removal of mod_auth_msql.c from the distribution. There are many + other options for databases today. Rather than offer one option, + offer none at this time. mod_auth_msql and other SQL database + authentication modules can be found at the Apache Module Registry. + http://modules.apache.org/ It would be nice to offer a generic + mod_auth_sql option in the near future. + *) PORT: BeOS support added [Alexei Kosut] *) Configure no longer accepts the -make option, since it creates 1.75 +0 -11 apachen/src/Configuration.tmpl Index: Configuration.tmpl =================================================================== RCS file: /export/home/cvs/apachen/src/Configuration.tmpl,v retrieving revision 1.74 retrieving revision 1.75 diff -u -r1.74 -r1.75 --- Configuration.tmpl 1997/08/24 16:39:58 1.74 +++ Configuration.tmpl 1997/08/31 22:36:22 1.75 @@ -252,17 +252,6 @@ # AddModule modules/standard/mod_auth_dbm.o # AddModule modules/standard/mod_auth_db.o -## msql_auth checks against an mSQL database. You must have mSQL installed -## and an "msql.h" available for this to even compile. Additionally, -## you may need to add a couple entries to the EXTRA_LIBS line, like -## -## -lmsql -L/usr/local/lib -L/usr/local/Minerva/lib -## -## This depends on your installation of mSQL. (This may be done by Configure -## at a later date) - -# AddModule modules/standard/mod_auth_msql.o - ## "digest" implements HTTP Digest Authentication rather than the less ## secure Basic Auth used by the other modules. 1.3 +0 -5 apachen/src/modules/standard/Makefile.tmpl Index: Makefile.tmpl =================================================================== RCS file: /export/home/cvs/apachen/src/modules/standard/Makefile.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Makefile.tmpl 1997/08/24 12:27:43 1.2 +++ Makefile.tmpl 1997/08/31 22:36:25 1.3 @@ -38,11 +38,6 @@ $(INCDIR)/http_core.h $(INCDIR)/http_log.h \ $(INCDIR)/http_protocol.h -mod_auth_msql.o: mod_auth_msql.c $(INCDIR)/httpd.h $(INCDIR)/conf.h \ - $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/http_config.h \ - $(INCDIR)/http_core.h $(INCDIR)/http_log.h \ - $(INCDIR)/http_protocol.h - mod_autoindex.o: mod_autoindex.c $(INCDIR)/httpd.h $(INCDIR)/conf.h \ $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/http_config.h \ $(INCDIR)/http_core.h $(INCDIR)/http_request.h \