From: serassio <> Date: Wed, 30 Nov 2005 01:08:09 +0000 (+0000) Subject: Bug #1455: Error during "make all" X-Git-Tag: SQUID_3_0_PRE4~482 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd39789618e995f186452dfcbf9789d696d8f55e;p=thirdparty%2Fsquid.git Bug #1455: Error during "make all" In the latest ICAP merge some make dist stuff was missing. Hoping to have added all nedeed files ... :-) --- diff --git a/src/ICAP/Makefile.am b/src/ICAP/Makefile.am index 688a78c73f..05e9866c6f 100644 --- a/src/ICAP/Makefile.am +++ b/src/ICAP/Makefile.am @@ -1,7 +1,7 @@ # # Makefile for the Squid Object Cache server # -# $Id: Makefile.am,v 1.2 2005/11/21 23:54:12 wessels Exp $ +# $Id: Makefile.am,v 1.3 2005/11/29 18:08:10 serassio Exp $ # # Uncomment and customize the following to suit your needs: # @@ -22,17 +22,34 @@ noinst_LIBRARIES = \ libicap_a_SOURCES = \ ChunkedCodingParser.cc \ - ICAPClientRespmodPrecache.cc \ - ICAPClientReqmodPrecache.cc \ + ChunkedCodingParser.h \ ICAPClient.cc \ + ICAPClient.h \ + ICAPClientReqmodPrecache.cc \ + ICAPClientReqmodPrecache.h \ + ICAPClientRespmodPrecache.cc \ + ICAPClientRespmodPrecache.h \ + ICAPConfig.cc \ + ICAPConfig.h \ ICAPElements.cc \ - ICAPXaction.cc \ - ICAPOptXact.cc \ + ICAPElements.h \ ICAPModXact.cc \ - ICAPServiceRep.cc \ - ICAPConfig.cc \ + ICAPModXact.h \ ICAPOptions.cc \ + ICAPOptions.h \ + ICAPOptXact.cc \ + ICAPOptXact.h \ + ICAPServiceRep.cc \ + ICAPServiceRep.h \ + ICAPXaction.cc \ + ICAPXaction.h \ + MsgPipe.cc \ + MsgPipe.h \ + MsgPipeData.h \ + MsgPipeEnd.h \ + MsgPipeSink.h \ + MsgPipeSource.h \ TextException.cc \ - MsgPipe.cc + TextException.h INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include -I$(top_srcdir)/src diff --git a/src/Makefile.am b/src/Makefile.am index 09eb20ca7b..e9a2f9afd6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,7 @@ # # Makefile for the Squid Object Cache server # -# $Id: Makefile.am,v 1.118 2005/11/21 23:18:57 wessels Exp $ +# $Id: Makefile.am,v 1.119 2005/11/29 18:08:09 serassio Exp $ # # Uncomment and customize the following to suit your needs: # @@ -257,6 +257,7 @@ EXTRA_squid_SOURCES = \ $(ESI_ALL_SOURCE) \ ProfStats.cc \ LeakFinder.cc \ + LeakFinder.h \ snmp_core.cc \ snmp_agent.cc \ unlinkd.cc \ @@ -365,6 +366,7 @@ squid_SOURCES = \ client_side_reply.h \ client_side_request.cc \ client_side_request.h \ + ClientRequestContext.h \ clientStream.cc \ clientStream.h \ comm.cc \