]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Summary: Fix ufsdump bitrot.
authorrobertc <>
Tue, 15 Jul 2003 19:15:04 +0000 (19:15 +0000)
committerrobertc <>
Tue, 15 Jul 2003 19:15:04 +0000 (19:15 +0000)
Keywords:

Add new needed objects into its build recipe.
Add <cassert> for STL safe assert definition.

src/Makefile.am
src/ufsdump.cc

index bdabc4aee0dbf891fb4e20c0ee935baaa76ab083..83d34be0fbc0879784fea0f2c14911e62ec2ee18 100644 (file)
@@ -1,7 +1,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.am,v 1.84 2003/07/15 12:21:36 robertc Exp $
+#  $Id: Makefile.am,v 1.85 2003/07/15 13:15:04 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -505,6 +505,8 @@ ufsdump_SOURCES = debug.cc \
        StoreMetaURL.h \
        StoreMetaVary.cc \
        StoreMetaVary.h \
+       StoreSwapLogData.cc \
+       StoreSwapLogData.h \
        access_log.cc \
        acl.cc \
        ACLChecklist.cc \
@@ -539,6 +541,7 @@ ufsdump_SOURCES = debug.cc \
        ETag.cc \
        event.cc \
        external_acl.cc \
+       ExternalACLEntry.cc \
        fd.cc \
        fde.cc \
        fde.h \
index cd8e75a809f90d1816ad026038dfe3ea3eb52202..2c72dff9f3fbf0ee94d58011eeba5540f525870d 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ufsdump.cc,v 1.2 2003/02/21 22:50:12 robertc Exp $
+ * $Id: ufsdump.cc,v 1.3 2003/07/15 13:15:04 robertc Exp $
  *
  * DEBUG: section 0     UFS Store Dump
  * AUTHOR: Robert Collins
@@ -43,6 +43,7 @@
 #undef free
 #include <stdexcept>
 #include <iostream>
+#include <cassert>
 
 void shut_down(int)
 {}