From: Francesco Chemolli Date: Fri, 29 Mar 2013 17:04:46 +0000 (+0100) Subject: Imported Makefile.am infrastructure needed for SBuf. X-Git-Tag: SQUID_3_5_0_1~612^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16593da0496a2ee9098af5594d45844f6e7a2a3b;p=thirdparty%2Fsquid.git Imported Makefile.am infrastructure needed for SBuf. --- diff --git a/src/Makefile.am b/src/Makefile.am index 8cab7437f9..2a5a5a95d6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -24,7 +24,12 @@ DNSSOURCE += \ SBUF_SOURCE= \ base/InstanceId.h \ MemBlob.h \ - MemBlob.cc + MemBlob.cc \ + OutOfBoundsException.h \ + SBuf.h \ + SBuf.cc \ + SBufExceptions.h \ + SBufExceptions.cc LOADABLE_MODULES_SOURCES = \ LoadableModule.h \ @@ -1088,6 +1093,7 @@ check_PROGRAMS+=\ tests/testStore \ tests/testString \ tests/testURL \ + tests/testSBuf \ tests/testConfigParser \ tests/testStatHist \ $(STORE_TESTS) @@ -3787,6 +3793,42 @@ tests_testURL_DEPENDENCIES = \ $(REPL_OBJS) \ $(SQUID_CPPUNIT_LA) +tests_testSBuf_SOURCES= \ + tests/testSBuf.h \ + tests/testSBuf.cc \ + tests/testMain.cc \ + tests/SBufFindTest.h \ + tests/SBufFindTest.cc \ + $(SBUF_SOURCE) \ + SBufStream.h \ + time.cc \ + mem.cc \ + tests/stub_debug.cc \ + tests/stub_fatal.cc \ + tests/stub_HelperChildConfig.cc \ + tests/stub_cache_cf.cc \ + tests/stub_cache_manager.cc \ + tests/stub_store.cc \ + tests/stub_store_stats.cc \ + tests/stub_tools.cc \ + SquidString.h \ + String.cc \ + wordlist.cc \ + MemBuf.cc +nodist_tests_testSBuf_SOURCES=$(TESTSOURCES) +tests_testSBuf_LDFLAGS = $(LIBADD_DL) +tests_testSBuf_LDADD=\ + $(SQUID_CPPUNIT_LIBS) \ + $(SQUID_CPPUNIT_LA) \ + $(COMPAT_LIB) \ + libsquid.la \ + ip/libip.la \ + mgr/libmgr.la \ + base/libbase.la \ + $(top_builddir)/lib/libmiscutil.la \ + $(COMMON_LIBS) +tests_testSBuf_DEPENDENCIES= $(SQUID_CPPUNIT_LA) + tests_testConfigParser_SOURCES = \ ClientInfo.h \ Mem.h \