ip/libip.la \
fs/libfs.la \
ipc/libipc.la \
- mgr/libmgr.la
+ mgr/libmgr.la \
+ $(SNMP_LIBS)
EXTRA_PROGRAMS = \
DiskIO/DiskDaemon/diskd \
$(CRYPTLIB) \
$(REGEXLIB) \
$(SNMPLIB) \
- $(SNMP_LIBS) \
${ADAPTATION_LIBS} \
$(ESI_LIBS) \
$(SSL_LIBS) \
# Make location configure settings available to the code
DEFS += -DDEFAULT_CONFIG_FILE=\"$(DEFAULT_CONFIG_FILE)\" -DDEFAULT_SQUID_DATA_DIR=\"$(datadir)\" -DDEFAULT_SQUID_CONFIG_DIR=\"$(sysconfdir)\"
-snmp_core.o snmp_agent.o: ../snmplib/libsnmp.a $(top_srcdir)/include/cache_snmp.h
+snmp_core.o snmp_agent.o: ../snmplib/libsnmplib.a $(top_srcdir)/include/cache_snmp.h
globals.cc: globals.h mk-globals-c.awk
$(AWK) -f $(srcdir)/mk-globals-c.awk < $(srcdir)/globals.h > $@ || ($(RM) -f $@ && exit 1)
tests/testCacheManager.h \
tests/testMain.cc \
tests/stub_main_cc.cc \
+ tests/stub_ipc_Forwarder.cc \
time.cc \
BodyPipe.cc \
cache_manager.cc \
tests/testEvent.h \
tests/testMain.cc \
tests/stub_main_cc.cc \
+ tests/stub_ipc_Forwarder.cc \
time.cc \
BodyPipe.cc \
cache_manager.cc \
tests/testEventLoop.h \
tests/testMain.cc \
tests/stub_main_cc.cc \
+ tests/stub_ipc_Forwarder.cc \
time.cc \
BodyPipe.cc \
cache_manager.cc \
CpuAffinitySet.cc \
CpuAffinitySet.h \
tests/stub_main_cc.cc \
+ tests/stub_ipc_Forwarder.cc \
debug.cc \
$(DELAY_POOL_SOURCE) \
disk.cc \
tests/testHttpRequestMethod.cc \
tests/testMain.cc \
tests/stub_main_cc.cc \
+ tests/stub_ipc_Forwarder.cc \
time.cc \
BodyPipe.cc \
cache_manager.cc \
tests/testMain.cc \
tests/stub_debug.cc \
tests/stub_main_cc.cc \
+ tests/stub_ipc_Forwarder.cc \
time.cc \
BodyPipe.cc \
cache_manager.cc \
--- /dev/null
+#include "ipc/Forwarder.h"
+
+//Avoid linker errors about Ipc::Forwarder
+void foo_stub_ipc_forwarder()
+{
+ Ipc::Forwarder foo(NULL,1.0);
+}