#
# Makefile for the Harvest Object Cache server
#
-# $Id: Makefile.in,v 1.16 1996/04/11 23:51:56 wessels Exp $
+# $Id: Makefile.in,v 1.17 1996/04/12 00:11:02 wessels Exp $
#
# Uncomment and customize the following to suit your needs:
#
INSTALL_BIN = @INSTALL_PROGRAM@
INSTALL_FILE = @INSTALL_DATA@
RANLIB = @RANLIB@
-YACC = @YACC@
-LEX = @LEX@
-LEXLIB = @LEXLIB@
LN_S = @LN_S@
PERL = @CMD_PERL@
CRYPT_LIB = @CRYPT_LIB@
PROGS = cached
UTILS = client dnsserver ftpget
CGIPROGS = cachemgr.cgi
-OBJS = acl.o blocklist.o cache_cf.o cached_error.o comm.o \
+OBJS = acl.o cache_cf.o cached_error.o comm.o \
connect.o debug.o disk.o dynamic_array.o \
fdstat.o filemap.o ftp.o gopher.o \
hash.o http.o icp.o ipcache.o \
-/* $Id: cache_cf.cc,v 1.36 1996/04/11 23:51:57 wessels Exp $ */
+/* $Id: cache_cf.cc,v 1.37 1996/04/12 00:11:02 wessels Exp $ */
/* DEBUG: Section 3 cache_cf: Configuration file parsing */
wordlistAdd(&Config.bind_addr_list, token);
}
+#ifdef OLD_CODE
static void parseBlockListLine()
{
char *token;
return;
blockAddToList(token);
}
+#endif
static void parseLocalDomainLine()
{
else if (!strcmp(token, "ttl_pattern"))
parseTTLPattern();
+#ifdef OLD_CODE
/* Parse a blocklist line */
else if (!strcmp(token, "blocklist"))
parseBlockListLine();
+#endif
/* Parse a negative_ttl line */
else if (!strcmp(token, "negative_ttl"))