#include <cassert>
/* stub functions for parts of squid not factored to be dynamic yet */
-void shut_down(int)
+void
+eventAdd(const char *name, EVH * func, void *arg, double when, int, bool cbdata)
{}
+// required by storeKeyPublicByRequest*
+// XXX: what pulls in storeKeyPublicByRequest?
+const char *urlCanonical(HttpRequest *) { assert(false); return NULL; }
+
void
-reconfigure(int)
-{}
+storeAppendPrintf(StoreEntry * e, const char *fmt,...)
+{
+ va_list args;
+ va_start(args, fmt);
+
+ assert(false);
+
+ va_end(args);
+}
+
+#include "CacheManager.h"
+CacheManager*
+CacheManager::GetInstance()
+{
+ assert(false);
+ return NULL;
+}
-#if WHENITMINIMAL
void
-eventAdd(const char *name, EVH * func, void *arg, double when, int, bool cbdata)
-{}
+CacheManager::registerAction(char const * action, char const * desc, OBJH * handler, int pw_req_flag, int atomic) {}
+
-#endif
/* end stub functions */
struct MetaStd {