Index: mod_nsd/Makefile.in =================================================================== RCS file: /usr/local/cvsroot/mod_nsd/Makefile.in,v diff -u -r1.5 -r1.6 --- mod_nsd/Makefile.in 6 May 2001 18:21:02 -0000 1.5 +++ mod_nsd/Makefile.in 6 May 2001 19:46:43 -0000 1.6 @@ -29,14 +29,14 @@ ################################################################ -MODULE_FILE = mod_aolserver$(TCL_SHLIB_SUFFIX) +MODULE_FILE = mod_nsd$(TCL_SHLIB_SUFFIX) HDRS = \ - adp.h conn.h dstring.h mod_aolserver.h modlog.h ns_set.h nsd.h \ + adp.h conn.h dstring.h mod_nsd.h modlog.h ns_set.h nsd.h \ str.h tls.h config.h db.h ns.h config.h ns_basics.h assert.h mm_hash.h MAS_SRCS = \ - mod_aolserver.c ns_set.c tclset.c dstring.c tls.c \ + mod_nsd.c ns_set.c tclset.c dstring.c tls.c \ modlog.c conn.c misc.c adp.c adpfancy.c str.c tclcmds.c tclmisc.c \ crypt.c htuu.c tclfile.c tclsock.c sock.c urlencode.c dbinit.c \ dbdrv.c dbutil.c dbtcl.c config.c quotehtml.c random.c mm_hash.c nsv.c \ @@ -88,10 +88,10 @@ $(MODULE_FILE): $(OBJS) $(APXS) -c -o $@ $(OBJS) $(LIBS) -install: install-mod_aolserver install-bootstrap install-tcl +install: install-mod_nsd install-bootstrap install-tcl -install-mod_aolserver: mod_aolserver$(TCL_SHLIB_SUFFIX) - @$(INSERT_MODULE) mod_aolserver$(TCL_SHLIB_SUFFIX) +install-mod_nsd: mod_nsd$(TCL_SHLIB_SUFFIX) + @$(INSERT_MODULE) mod_nsd$(TCL_SHLIB_SUFFIX) install-bootstrap: $(BOOTSTRAP_MAIN) $(BOOTSTRAP_OTHER) $(INSTALL_DATA) $(BOOTSTRAP_MAIN) $(BOOTSTRAP_MAIN_DIR) @@ -105,6 +105,6 @@ clean: rm -f *.o $(MODULE_FILE) -mod_aolserver.tgz: $(DISTFILES) - tar cvzf mod_aolserver.tgz $(DISTFILES) +mod_nsd.tgz: $(DISTFILES) + tar cvzf mod_nsd.tgz $(DISTFILES) Index: mod_nsd/configure =================================================================== RCS file: /usr/local/cvsroot/mod_nsd/configure,v diff -u -r1.2 -r1.3 --- mod_nsd/configure 6 May 2001 18:53:23 -0000 1.2 +++ mod_nsd/configure 6 May 2001 19:46:43 -0000 1.3 @@ -464,7 +464,7 @@ # A filename unique to this package, relative to the directory that # configure is in, which we can look for to find out if srcdir is correct. -ac_unique_file=mod_aolserver.c +ac_unique_file=mod_nsd.c # Find the source files, if location was not specified. if test -z "$srcdir"; then Index: mod_nsd/configure.in =================================================================== RCS file: /usr/local/cvsroot/mod_nsd/configure.in,v diff -u -r1.1 -r1.2 --- mod_nsd/configure.in 13 Apr 2001 21:09:32 -0000 1.1 +++ mod_nsd/configure.in 6 May 2001 19:46:43 -0000 1.2 @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(mod_aolserver.c) +AC_INIT(mod_nsd.c) dnl Checks for programs. AC_PROG_CC Index: mod_nsd/nsd.h =================================================================== RCS file: /usr/local/cvsroot/mod_nsd/nsd.h,v diff -u -r1.1 -r1.2 --- mod_nsd/nsd.h 13 Apr 2001 21:09:32 -0000 1.1 +++ mod_nsd/nsd.h 6 May 2001 19:46:43 -0000 1.2 @@ -5,7 +5,7 @@ /* Header files for major functional modules... */ #include <tcl.h> -#include "mod_aolserver.h" +#include "mod_nsd.h" #include "ns_basics.h" #include "ns_set.h" Index: mod_nsd/tls.c =================================================================== RCS file: /usr/local/cvsroot/mod_nsd/tls.c,v diff -u -r1.1 -r1.2 --- mod_nsd/tls.c 13 Apr 2001 21:09:32 -0000 1.1 +++ mod_nsd/tls.c 6 May 2001 19:46:43 -0000 1.2 @@ -1,5 +1,5 @@ #include "tls.h" -#include "mod_aolserver.h" +#include "mod_nsd.h" static Ns_TlsCleanup *(cleanups)[NS_THREAD_MAXTLS]; static Ns_Tls next_tls = 0;