Build failed in Hudson: 3.HEAD-i386-OpenBSD #555

From: <noc_at_squid-cache.org>
Date: Sat, 11 Sep 2010 04:02:14 +0200 (CEST)

See <http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/555/changes>

Changes:

[Alex Rousskov <rousskov_at_measurement-factory.com>] Added HttpControlMsg.h to Makefile.am.

[Automatic source maintenance <squidadm_at_squid-cache.org>] SourceFormat Enforcement

[Alex Rousskov <rousskov_at_measurement-factory.com>] Added HttpControlMsg class and HttpControlMsgSink API to handle 1xx forwarding.

The header was forgotten in r10839 commit. Apparently, "bzr patch" does not
understand what "=== added file" line produced by "bzr diff" means.

[Alex Rousskov <rousskov_at_measurement-factory.com>] Fixed a NetDB leak.

[Alex Rousskov <rousskov_at_measurement-factory.com>] Fixed an idnsGrokReply memory leak when merging DNS AAAA and A answers.

We were not updating message->ancount after force-feeding the A message
with answers from the old AAAA message.

[Alex Rousskov <rousskov_at_measurement-factory.com>] HTTP Compliance: delete Warnings that have warning-date different from Date.

Added HttpReply::removeStaleWarnings() method that iterates over all Warning
headers and removes stale warning-values. If a reply has no valid Date header,
all warning-values with warning-date are removed. Also, we remove
warning-value if we failed to parse warning-date.

removeStaleWarnings() is called from processReplyHeader(), after reply headers
are parsed.

Co-Advisor test cases:
test_case/rfc2616/date-accept-fmt-warn-asctime-rfc1123
test_case/rfc2616/date-accept-fmt-warn-asctime-rfc850
test_case/rfc2616/date-accept-fmt-warn-rfc1123-asctime
test_case/rfc2616/date-accept-fmt-warn-rfc1123-rfc850
test_case/rfc2616/date-accept-fmt-warn-rfc850-asctime
test_case/rfc2616/date-accept-fmt-warn-rfc850-rfc1123

[Alex Rousskov <rousskov_at_measurement-factory.com>] Compliance: Forward 1xx control messages to clients that support them.

Forward 1xx control messages to all HTTP/1.1 clients and to HTTP/1.0
clients that sent an Expect: 100-continue header unless the 1xx message
fails the optional http_reply_access check described below.

RFC 2616 requires clients to accept 1xx control messages, even if they
did not send Expect headers. However, 1xx control messages prohibited by
http_reply_access are ignored and not forwarded. This can be used to
protect broken HTTP/1.1 clients or naive HTTP/1.0 clients that
unknowingly forward 100-continue headers, for example. Only fast checks
are supported at this time.

The patch removes ignore_expect_100 squid.conf option and the
corresponding code because

- the reasons to treat 100-continue specially have changed since we
can now forward 1xx responses;

- rejection of 100-continue request can still be done using a
combination of the existing http_access and deny_info options;

- hiding of 100-continue header from next hops can still be done using
an existing request_header_access option;

- 100 (Continue) responses can be hidden from clients using
http_reply_access check described above.

We still respond with 417 Expectation Failed to requests with
expectations other than 100-continue.

Implementation notes:

We forward control messages one-at-a-time and stop processing the server
response while the 1xx message is being written to client, to avoid
server-driven DoS attacks with large number of 1xx messages.

1xx forwarding is done via async calls from HttpStateData to
ConnStateData/ClientSocketContext. The latter then calls back to notify
HttpStateData that the message was written out to client. If any one of
the two async messages is not fired, HttpStateData will get stuck unless
it is destroyed due to an external event/error. The code assumes such
event/error will always happen because when
ConnStateData/ClientSocketContext is gone, HttpStateData job should be
terminated. This requires more testing/thought, but should still be
better than not forwarding 1xx messages at all.

[Alex Rousskov <rousskov_at_measurement-factory.com>] Dechunk incoming requests as they come in and chunk outgoing requests.

The server side always chunks the request if and only if the original request
was chunked. No next hop version checks are performed.

* Client-side changes:

Removed clientIsRequestBodyValid() as unused. It was called with a
content-length>0 precondition that made the function always return true.

Removed old dechunking hack that was trying to buffering the entire request
body, pretending that we are still reading the headers. Adjusted related
code. More work may be needed to identify client-side code that assumes
the request size is always known.

Removed ConnStateData::bodySizeLeft() because we do not always know how much
body is left to read -- chunked requests do not have known sizes until we read
the last-chunk. Moreover, it was possibly used wrong because sometimes we want
to know whether we want to comm_read more body bytes and sometimes we want to
know whether we want to "produce" more body bytes (i.e., copy already read
bytes into the BodyPipe buffer, which can get full).

Added ConnStateData::mayNeedToReadMoreBody() to replace conn->bodySizeLeft()
with something more usable and precise.

XXX: If there is a chunks parsing error, the new code just resets the
connection. I tried to find a way to send an error page to the client, but
failed to do so. It is easy to do when the headers and the body prefix is
parsed, but if the error is send later, the server-side may start sending us
its response, and the two responses would clash, causing assertions. I do not
know how to fully avoid that. Perhaps we need to unregister from Store before
responding with an error? Search for WE_KNOW_HOW_TO_SEND_ERRORS.

Tried to break deep recursion/iteration around clientParseRequest. When
chunked parser fails during the message prefix parsing, the rest of the code
may decide that the connection is no longer used (and that there is no pending
transaction, even though the currentobject member is not NULL!) and start
parsing the second request. If that second parse fails (for example), there
will be two concurrent errors to be sent to the client and the client-side
code cannot handle that. However, due to the XXX above, we never send an error
when chunking parser fails, making most of the related code polishing useless,
at least for now.

Removed my wrong XXX related to closing after initiateClose.

Removed my(?) XXX related to endless chunked requests. There is nothing special
about them, I guess, as a non-chunked request can be virtually endless as
well if it has a huge Content-Length value.

Use commIsHalfClosed() instead of fd_table[fd].flags.socket_eof for
consistency with other client-side code and to improve readability. I think
these should return the same value in our context but I am not sure.

Correctly handle identity encoding. TODO: HTTPbis dropped it. Should we?

Polished request_header_max_size handling code, converting old
connKeepReadingIncompleteRequest and connCancelIncompleteRequests functions
into a new ConnStateData::checkHeaderLimits() method.

* Server-side changes:

Separated "received whole request body" state from "sent whole request
body". When we chunk requests, we need to add last-chunk. Thus, we may
receive (and written) the whole raw body but still need to write
last-chunk. This is not trivial because we should not write last-chunk
if the body producer aborted. XXX: check all pipe->exhausted() callers
to make sure all code has been adjusted.

Added getMoreRequestBody() virtual method that Server uses to get
encoded body bytes from its kids. FTP does not encode and uses default
implementation.

Fixed HTTP/FTP doneSendingRequestBody() to call its parent. I am not sure
it helps with correctly processing transactions, but the parent method was
designed to be called, and calling it make the transaction state more clear.

Moved "broken POSTS" handling code into its own method and polished it
(HttpStateData::finishingBrokenPost). We now skip the "broken POSTS" fix
if the request is chunked.

Resolved old XXX: HttpStateData::handleRequestBodyProducerAborted() was
indeed doing nothing useful despite all the pretense. Now it aborts the
transaction.

[Francesco Chemolli <kinkie_at_squid-cache.org>] Portability fix: Eui48 needs some extra headers on OpenBSD.

------------------------------------------
[...truncated 2736 lines...]
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -I../../../src/auth -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT AclMaxUserIp.lo -MD -MP -MF .deps/AclMaxUserIp.Tpo -c ../../../src/auth/AclMaxUserIp.cc -o AclMaxUserIp.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -I../../../src/auth -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT AclProxyAuth.lo -MD -MP -MF ".deps/AclProxyAuth.Tpo" -c -o AclProxyAuth.lo ../../../src/auth/AclProxyAuth.cc; then mv -f ".deps/AclProxyAuth.Tpo" ".deps/AclProxyAuth.Plo"; else rm -f ".deps/AclProxyAuth.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -I../../../src/auth -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT AclProxyAuth.lo -MD -MP -MF .deps/AclProxyAuth.Tpo -c ../../../src/auth/AclProxyAuth.cc -fPIC -DPIC -o .libs/AclProxyAuth.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -I../../../src/auth -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT AclProxyAuth.lo -MD -MP -MF .deps/AclProxyAuth.Tpo -c ../../../src/auth/AclProxyAuth.cc -o AclProxyAuth.o >/dev/null 2>&1
/bin/sh ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o libacls.la Acl.lo AclMaxUserIp.lo AclProxyAuth.lo
libtool: link: /usr/bin/ar cru .libs/libacls.a .libs/Acl.o .libs/AclMaxUserIp.o .libs/AclProxyAuth.o
libtool: link: ranlib .libs/libacls.a
libtool: link: ( cd ".libs" && rm -f "libacls.la" && ln -s "../libacls.la" "libacls.la" )
Making all in ip
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Address.lo -MD -MP -MF ".deps/Address.Tpo" -c -o Address.lo ../../../src/ip/Address.cc; then mv -f ".deps/Address.Tpo" ".deps/Address.Plo"; else rm -f ".deps/Address.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Address.lo -MD -MP -MF .deps/Address.Tpo -c ../../../src/ip/Address.cc -fPIC -DPIC -o .libs/Address.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Address.lo -MD -MP -MF .deps/Address.Tpo -c ../../../src/ip/Address.cc -o Address.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Intercept.lo -MD -MP -MF ".deps/Intercept.Tpo" -c -o Intercept.lo ../../../src/ip/Intercept.cc; then mv -f ".deps/Intercept.Tpo" ".deps/Intercept.Plo"; else rm -f ".deps/Intercept.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Intercept.lo -MD -MP -MF .deps/Intercept.Tpo -c ../../../src/ip/Intercept.cc -fPIC -DPIC -o .libs/Intercept.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Intercept.lo -MD -MP -MF .deps/Intercept.Tpo -c ../../../src/ip/Intercept.cc -o Intercept.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT QosConfig.lo -MD -MP -MF ".deps/QosConfig.Tpo" -c -o QosConfig.lo ../../../src/ip/QosConfig.cc; then mv -f ".deps/QosConfig.Tpo" ".deps/QosConfig.Plo"; else rm -f ".deps/QosConfig.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT QosConfig.lo -MD -MP -MF .deps/QosConfig.Tpo -c ../../../src/ip/QosConfig.cc -fPIC -DPIC -o .libs/QosConfig.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT QosConfig.lo -MD -MP -MF .deps/QosConfig.Tpo -c ../../../src/ip/QosConfig.cc -o QosConfig.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT tools.lo -MD -MP -MF ".deps/tools.Tpo" -c -o tools.lo ../../../src/ip/tools.cc; then mv -f ".deps/tools.Tpo" ".deps/tools.Plo"; else rm -f ".deps/tools.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT tools.lo -MD -MP -MF .deps/tools.Tpo -c ../../../src/ip/tools.cc -fPIC -DPIC -o .libs/tools.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT tools.lo -MD -MP -MF .deps/tools.Tpo -c ../../../src/ip/tools.cc -o tools.o >/dev/null 2>&1
/bin/sh ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o libip.la Address.lo Intercept.lo QosConfig.lo tools.lo
libtool: link: /usr/bin/ar cru .libs/libip.a .libs/Address.o .libs/Intercept.o .libs/QosConfig.o .libs/tools.o
libtool: link: ranlib .libs/libip.a
libtool: link: ( cd ".libs" && rm -f "libip.la" && ln -s "../libip.la" "libip.la" )
Making all in icmp
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Icmp.lo -MD -MP -MF ".deps/Icmp.Tpo" -c -o Icmp.lo ../../../src/icmp/Icmp.cc; then mv -f ".deps/Icmp.Tpo" ".deps/Icmp.Plo"; else rm -f ".deps/Icmp.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Icmp.lo -MD -MP -MF .deps/Icmp.Tpo -c ../../../src/icmp/Icmp.cc -fPIC -DPIC -o .libs/Icmp.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Icmp.lo -MD -MP -MF .deps/Icmp.Tpo -c ../../../src/icmp/Icmp.cc -o Icmp.o >/dev/null 2>&1
/bin/sh ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o libicmp-core.la Icmp.lo
libtool: link: /usr/bin/ar cru .libs/libicmp-core.a .libs/Icmp.o
libtool: link: ranlib .libs/libicmp-core.a
libtool: link: ( cd ".libs" && rm -f "libicmp-core.la" && ln -s "../libicmp-core.la" "libicmp-core.la" )
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT IcmpSquid.lo -MD -MP -MF ".deps/IcmpSquid.Tpo" -c -o IcmpSquid.lo ../../../src/icmp/IcmpSquid.cc; then mv -f ".deps/IcmpSquid.Tpo" ".deps/IcmpSquid.Plo"; else rm -f ".deps/IcmpSquid.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT IcmpSquid.lo -MD -MP -MF .deps/IcmpSquid.Tpo -c ../../../src/icmp/IcmpSquid.cc -fPIC -DPIC -o .libs/IcmpSquid.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT IcmpSquid.lo -MD -MP -MF .deps/IcmpSquid.Tpo -c ../../../src/icmp/IcmpSquid.cc -o IcmpSquid.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT net_db.lo -MD -MP -MF ".deps/net_db.Tpo" -c -o net_db.lo ../../../src/icmp/net_db.cc; then mv -f ".deps/net_db.Tpo" ".deps/net_db.Plo"; else rm -f ".deps/net_db.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT net_db.lo -MD -MP -MF .deps/net_db.Tpo -c ../../../src/icmp/net_db.cc -fPIC -DPIC -o .libs/net_db.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT net_db.lo -MD -MP -MF .deps/net_db.Tpo -c ../../../src/icmp/net_db.cc -o net_db.o >/dev/null 2>&1
/bin/sh ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o libicmp.la IcmpSquid.lo net_db.lo
libtool: link: /usr/bin/ar cru .libs/libicmp.a .libs/IcmpSquid.o .libs/net_db.o
libtool: link: ranlib .libs/libicmp.a
libtool: link: ( cd ".libs" && rm -f "libicmp.la" && ln -s "../libicmp.la" "libicmp.la" )
Making all in ident
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT AclIdent.lo -MD -MP -MF ".deps/AclIdent.Tpo" -c -o AclIdent.lo ../../../src/ident/AclIdent.cc; then mv -f ".deps/AclIdent.Tpo" ".deps/AclIdent.Plo"; else rm -f ".deps/AclIdent.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT AclIdent.lo -MD -MP -MF .deps/AclIdent.Tpo -c ../../../src/ident/AclIdent.cc -fPIC -DPIC -o .libs/AclIdent.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT AclIdent.lo -MD -MP -MF .deps/AclIdent.Tpo -c ../../../src/ident/AclIdent.cc -o AclIdent.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Ident.lo -MD -MP -MF ".deps/Ident.Tpo" -c -o Ident.lo ../../../src/ident/Ident.cc; then mv -f ".deps/Ident.Tpo" ".deps/Ident.Plo"; else rm -f ".deps/Ident.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Ident.lo -MD -MP -MF .deps/Ident.Tpo -c ../../../src/ident/Ident.cc -fPIC -DPIC -o .libs/Ident.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Ident.lo -MD -MP -MF .deps/Ident.Tpo -c ../../../src/ident/Ident.cc -o Ident.o >/dev/null 2>&1
/bin/sh ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o libident.la AclIdent.lo Ident.lo
libtool: link: /usr/bin/ar cru .libs/libident.a .libs/AclIdent.o .libs/Ident.o
libtool: link: ranlib .libs/libident.a
libtool: link: ( cd ".libs" && rm -f "libident.la" && ln -s "../libident.la" "libident.la" )
Making all in log
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT access_log.lo -MD -MP -MF ".deps/access_log.Tpo" -c -o access_log.lo ../../../src/log/access_log.cc; then mv -f ".deps/access_log.Tpo" ".deps/access_log.Plo"; else rm -f ".deps/access_log.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT access_log.lo -MD -MP -MF .deps/access_log.Tpo -c ../../../src/log/access_log.cc -fPIC -DPIC -o .libs/access_log.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT access_log.lo -MD -MP -MF .deps/access_log.Tpo -c ../../../src/log/access_log.cc -o access_log.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Config.lo -MD -MP -MF ".deps/Config.Tpo" -c -o Config.lo ../../../src/log/Config.cc; then mv -f ".deps/Config.Tpo" ".deps/Config.Plo"; else rm -f ".deps/Config.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Config.lo -MD -MP -MF .deps/Config.Tpo -c ../../../src/log/Config.cc -fPIC -DPIC -o .libs/Config.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Config.lo -MD -MP -MF .deps/Config.Tpo -c ../../../src/log/Config.cc -o Config.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT File.lo -MD -MP -MF ".deps/File.Tpo" -c -o File.lo ../../../src/log/File.cc; then mv -f ".deps/File.Tpo" ".deps/File.Plo"; else rm -f ".deps/File.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT File.lo -MD -MP -MF .deps/File.Tpo -c ../../../src/log/File.cc -fPIC -DPIC -o .libs/File.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT File.lo -MD -MP -MF .deps/File.Tpo -c ../../../src/log/File.cc -o File.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModDaemon.lo -MD -MP -MF ".deps/ModDaemon.Tpo" -c -o ModDaemon.lo ../../../src/log/ModDaemon.cc; then mv -f ".deps/ModDaemon.Tpo" ".deps/ModDaemon.Plo"; else rm -f ".deps/ModDaemon.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModDaemon.lo -MD -MP -MF .deps/ModDaemon.Tpo -c ../../../src/log/ModDaemon.cc -fPIC -DPIC -o .libs/ModDaemon.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModDaemon.lo -MD -MP -MF .deps/ModDaemon.Tpo -c ../../../src/log/ModDaemon.cc -o ModDaemon.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModStdio.lo -MD -MP -MF ".deps/ModStdio.Tpo" -c -o ModStdio.lo ../../../src/log/ModStdio.cc; then mv -f ".deps/ModStdio.Tpo" ".deps/ModStdio.Plo"; else rm -f ".deps/ModStdio.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModStdio.lo -MD -MP -MF .deps/ModStdio.Tpo -c ../../../src/log/ModStdio.cc -fPIC -DPIC -o .libs/ModStdio.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModStdio.lo -MD -MP -MF .deps/ModStdio.Tpo -c ../../../src/log/ModStdio.cc -o ModStdio.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModSyslog.lo -MD -MP -MF ".deps/ModSyslog.Tpo" -c -o ModSyslog.lo ../../../src/log/ModSyslog.cc; then mv -f ".deps/ModSyslog.Tpo" ".deps/ModSyslog.Plo"; else rm -f ".deps/ModSyslog.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModSyslog.lo -MD -MP -MF .deps/ModSyslog.Tpo -c ../../../src/log/ModSyslog.cc -fPIC -DPIC -o .libs/ModSyslog.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModSyslog.lo -MD -MP -MF .deps/ModSyslog.Tpo -c ../../../src/log/ModSyslog.cc -o ModSyslog.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModTcp.lo -MD -MP -MF ".deps/ModTcp.Tpo" -c -o ModTcp.lo ../../../src/log/ModTcp.cc; then mv -f ".deps/ModTcp.Tpo" ".deps/ModTcp.Plo"; else rm -f ".deps/ModTcp.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModTcp.lo -MD -MP -MF .deps/ModTcp.Tpo -c ../../../src/log/ModTcp.cc -fPIC -DPIC -o .libs/ModTcp.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModTcp.lo -MD -MP -MF .deps/ModTcp.Tpo -c ../../../src/log/ModTcp.cc -o ModTcp.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModUdp.lo -MD -MP -MF ".deps/ModUdp.Tpo" -c -o ModUdp.lo ../../../src/log/ModUdp.cc; then mv -f ".deps/ModUdp.Tpo" ".deps/ModUdp.Plo"; else rm -f ".deps/ModUdp.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModUdp.lo -MD -MP -MF .deps/ModUdp.Tpo -c ../../../src/log/ModUdp.cc -fPIC -DPIC -o .libs/ModUdp.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ModUdp.lo -MD -MP -MF .deps/ModUdp.Tpo -c ../../../src/log/ModUdp.cc -o ModUdp.o >/dev/null 2>&1
/bin/sh ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o liblog.la access_log.lo Config.lo File.lo ModDaemon.lo ModStdio.lo ModSyslog.lo ModTcp.lo ModUdp.lo
libtool: link: /usr/bin/ar cru .libs/liblog.a .libs/access_log.o .libs/Config.o .libs/File.o .libs/ModDaemon.o .libs/ModStdio.o .libs/ModSyslog.o .libs/ModTcp.o .libs/ModUdp.o
libtool: link: ranlib .libs/liblog.a
libtool: link: ( cd ".libs" && rm -f "liblog.la" && ln -s "../liblog.la" "liblog.la" )
Making all in ipc
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT FdNotes.lo -MD -MP -MF ".deps/FdNotes.Tpo" -c -o FdNotes.lo ../../../src/ipc/FdNotes.cc; then mv -f ".deps/FdNotes.Tpo" ".deps/FdNotes.Plo"; else rm -f ".deps/FdNotes.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT FdNotes.lo -MD -MP -MF .deps/FdNotes.Tpo -c ../../../src/ipc/FdNotes.cc -fPIC -DPIC -o .libs/FdNotes.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT FdNotes.lo -MD -MP -MF .deps/FdNotes.Tpo -c ../../../src/ipc/FdNotes.cc -o FdNotes.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Kid.lo -MD -MP -MF ".deps/Kid.Tpo" -c -o Kid.lo ../../../src/ipc/Kid.cc; then mv -f ".deps/Kid.Tpo" ".deps/Kid.Plo"; else rm -f ".deps/Kid.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Kid.lo -MD -MP -MF .deps/Kid.Tpo -c ../../../src/ipc/Kid.cc -fPIC -DPIC -o .libs/Kid.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Kid.lo -MD -MP -MF .deps/Kid.Tpo -c ../../../src/ipc/Kid.cc -o Kid.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Kids.lo -MD -MP -MF ".deps/Kids.Tpo" -c -o Kids.lo ../../../src/ipc/Kids.cc; then mv -f ".deps/Kids.Tpo" ".deps/Kids.Plo"; else rm -f ".deps/Kids.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Kids.lo -MD -MP -MF .deps/Kids.Tpo -c ../../../src/ipc/Kids.cc -fPIC -DPIC -o .libs/Kids.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Kids.lo -MD -MP -MF .deps/Kids.Tpo -c ../../../src/ipc/Kids.cc -o Kids.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Messages.lo -MD -MP -MF ".deps/Messages.Tpo" -c -o Messages.lo ../../../src/ipc/Messages.cc; then mv -f ".deps/Messages.Tpo" ".deps/Messages.Plo"; else rm -f ".deps/Messages.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Messages.lo -MD -MP -MF .deps/Messages.Tpo -c ../../../src/ipc/Messages.cc -fPIC -DPIC -o .libs/Messages.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Messages.lo -MD -MP -MF .deps/Messages.Tpo -c ../../../src/ipc/Messages.cc -o Messages.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT StartListening.lo -MD -MP -MF ".deps/StartListening.Tpo" -c -o StartListening.lo ../../../src/ipc/StartListening.cc; then mv -f ".deps/StartListening.Tpo" ".deps/StartListening.Plo"; else rm -f ".deps/StartListening.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT StartListening.lo -MD -MP -MF .deps/StartListening.Tpo -c ../../../src/ipc/StartListening.cc -fPIC -DPIC -o .libs/StartListening.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT StartListening.lo -MD -MP -MF .deps/StartListening.Tpo -c ../../../src/ipc/StartListening.cc -o StartListening.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT SharedListen.lo -MD -MP -MF ".deps/SharedListen.Tpo" -c -o SharedListen.lo ../../../src/ipc/SharedListen.cc; then mv -f ".deps/SharedListen.Tpo" ".deps/SharedListen.Plo"; else rm -f ".deps/SharedListen.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT SharedListen.lo -MD -MP -MF .deps/SharedListen.Tpo -c ../../../src/ipc/SharedListen.cc -fPIC -DPIC -o .libs/SharedListen.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT SharedListen.lo -MD -MP -MF .deps/SharedListen.Tpo -c ../../../src/ipc/SharedListen.cc -o SharedListen.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT TypedMsgHdr.lo -MD -MP -MF ".deps/TypedMsgHdr.Tpo" -c -o TypedMsgHdr.lo ../../../src/ipc/TypedMsgHdr.cc; then mv -f ".deps/TypedMsgHdr.Tpo" ".deps/TypedMsgHdr.Plo"; else rm -f ".deps/TypedMsgHdr.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT TypedMsgHdr.lo -MD -MP -MF .deps/TypedMsgHdr.Tpo -c ../../../src/ipc/TypedMsgHdr.cc -fPIC -DPIC -o .libs/TypedMsgHdr.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT TypedMsgHdr.lo -MD -MP -MF .deps/TypedMsgHdr.Tpo -c ../../../src/ipc/TypedMsgHdr.cc -o TypedMsgHdr.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Coordinator.lo -MD -MP -MF ".deps/Coordinator.Tpo" -c -o Coordinator.lo ../../../src/ipc/Coordinator.cc; then mv -f ".deps/Coordinator.Tpo" ".deps/Coordinator.Plo"; else rm -f ".deps/Coordinator.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Coordinator.lo -MD -MP -MF .deps/Coordinator.Tpo -c ../../../src/ipc/Coordinator.cc -fPIC -DPIC -o .libs/Coordinator.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Coordinator.lo -MD -MP -MF .deps/Coordinator.Tpo -c ../../../src/ipc/Coordinator.cc -o Coordinator.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT UdsOp.lo -MD -MP -MF ".deps/UdsOp.Tpo" -c -o UdsOp.lo ../../../src/ipc/UdsOp.cc; then mv -f ".deps/UdsOp.Tpo" ".deps/UdsOp.Plo"; else rm -f ".deps/UdsOp.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT UdsOp.lo -MD -MP -MF .deps/UdsOp.Tpo -c ../../../src/ipc/UdsOp.cc -fPIC -DPIC -o .libs/UdsOp.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT UdsOp.lo -MD -MP -MF .deps/UdsOp.Tpo -c ../../../src/ipc/UdsOp.cc -o UdsOp.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Port.lo -MD -MP -MF ".deps/Port.Tpo" -c -o Port.lo ../../../src/ipc/Port.cc; then mv -f ".deps/Port.Tpo" ".deps/Port.Plo"; else rm -f ".deps/Port.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Port.lo -MD -MP -MF .deps/Port.Tpo -c ../../../src/ipc/Port.cc -fPIC -DPIC -o .libs/Port.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Port.lo -MD -MP -MF .deps/Port.Tpo -c ../../../src/ipc/Port.cc -o Port.o >/dev/null 2>&1
if /bin/sh ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Strand.lo -MD -MP -MF ".deps/Strand.Tpo" -c -o Strand.lo ../../../src/ipc/Strand.cc; then mv -f ".deps/Strand.Tpo" ".deps/Strand.Plo"; else rm -f ".deps/Strand.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Strand.lo -MD -MP -MF .deps/Strand.Tpo -c ../../../src/ipc/Strand.cc -fPIC -DPIC -o .libs/Strand.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst\"> -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT Strand.lo -MD -MP -MF .deps/Strand.Tpo -c ../../../src/ipc/Strand.cc -o Strand.o >/dev/null 2>&1
/bin/sh ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o libipc.la FdNotes.lo Kid.lo Kids.lo Messages.lo StartListening.lo SharedListen.lo TypedMsgHdr.lo Coordinator.lo UdsOp.lo Port.lo Strand.lo
libtool: link: /usr/bin/ar cru .libs/libipc.a .libs/FdNotes.o .libs/Kid.o .libs/Kids.o .libs/Messages.o .libs/StartListening.o .libs/SharedListen.o .libs/TypedMsgHdr.o .libs/Coordinator.o .libs/UdsOp.o .libs/Port.o .libs/Strand.o
libtool: link: ranlib .libs/libipc.a
libtool: link: ( cd ".libs" && rm -f "libipc.la" && ln -s "../libipc.la" "libipc.la" )
depbase=`echo DiskIO/Blocking/BlockingFile.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/Blocking/BlockingFile.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/Blocking/BlockingFile.o ../../src/DiskIO/Blocking/BlockingFile.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/Blocking/BlockingIOStrategy.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/Blocking/BlockingIOStrategy.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/Blocking/BlockingIOStrategy.o ../../src/DiskIO/Blocking/BlockingIOStrategy.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/Blocking/BlockingDiskIOModule.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/Blocking/BlockingDiskIOModule.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/Blocking/BlockingDiskIOModule.o ../../src/DiskIO/Blocking/BlockingDiskIOModule.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
rm -f libBlocking.a
/usr/bin/ar cru libBlocking.a DiskIO/Blocking/BlockingFile.o DiskIO/Blocking/BlockingIOStrategy.o DiskIO/Blocking/BlockingDiskIOModule.o
ranlib libBlocking.a
depbase=`echo DiskIO/DiskDaemon/DiskdFile.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/DiskDaemon/DiskdFile.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/DiskDaemon/DiskdFile.o ../../src/DiskIO/DiskDaemon/DiskdFile.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/DiskDaemon/DiskdIOStrategy.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/DiskDaemon/DiskdIOStrategy.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/DiskDaemon/DiskdIOStrategy.o ../../src/DiskIO/DiskDaemon/DiskdIOStrategy.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/DiskDaemon/DiskDaemonDiskIOModule.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/DiskDaemon/DiskDaemonDiskIOModule.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/DiskDaemon/DiskDaemonDiskIOModule.o ../../src/DiskIO/DiskDaemon/DiskDaemonDiskIOModule.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
rm -f libDiskDaemon.a
/usr/bin/ar cru libDiskDaemon.a DiskIO/DiskDaemon/DiskdFile.o DiskIO/DiskDaemon/DiskdIOStrategy.o DiskIO/DiskDaemon/DiskDaemonDiskIOModule.o
ranlib libDiskDaemon.a
depbase=`echo DiskIO/DiskThreads/aiops.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/DiskThreads/aiops.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/DiskThreads/aiops.o ../../src/DiskIO/DiskThreads/aiops.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/DiskThreads/async_io.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/DiskThreads/async_io.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/DiskThreads/async_io.o ../../src/DiskIO/DiskThreads/async_io.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/DiskThreads/DiskThreadsDiskFile.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/DiskThreads/DiskThreadsDiskFile.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/DiskThreads/DiskThreadsDiskFile.o ../../src/DiskIO/DiskThreads/DiskThreadsDiskFile.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/DiskThreads/DiskThreadsDiskIOModule.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/DiskThreads/DiskThreadsDiskIOModule.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/DiskThreads/DiskThreadsDiskIOModule.o ../../src/DiskIO/DiskThreads/DiskThreadsDiskIOModule.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/DiskThreads/DiskThreadsIOStrategy.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/DiskThreads/DiskThreadsIOStrategy.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/DiskThreads/DiskThreadsIOStrategy.o ../../src/DiskIO/DiskThreads/DiskThreadsIOStrategy.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
rm -f libDiskThreads.a
/usr/bin/ar cru libDiskThreads.a DiskIO/DiskThreads/aiops.o DiskIO/DiskThreads/async_io.o DiskIO/DiskThreads/DiskThreadsDiskFile.o DiskIO/DiskThreads/DiskThreadsDiskIOModule.o DiskIO/DiskThreads/DiskThreadsIOStrategy.o
ranlib libDiskThreads.a
depbase=`echo comm.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; if /bin/sh ../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT comm.lo -MD -MP -MF "$depbase.Tpo" -c -o comm.lo ../../src/comm.cc; then mv -f "$depbase.Tpo" "$depbase.Plo"; else rm -f "$depbase.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT comm.lo -MD -MP -MF .deps/comm.Tpo -c ../../src/comm.cc -fPIC -DPIC -o .libs/comm.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT comm.lo -MD -MP -MF .deps/comm.Tpo -c ../../src/comm.cc -o comm.o >/dev/null 2>&1
depbase=`echo CommCalls.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; if /bin/sh ../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT CommCalls.lo -MD -MP -MF "$depbase.Tpo" -c -o CommCalls.lo ../../src/CommCalls.cc; then mv -f "$depbase.Tpo" "$depbase.Plo"; else rm -f "$depbase.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT CommCalls.lo -MD -MP -MF .deps/CommCalls.Tpo -c ../../src/CommCalls.cc -fPIC -DPIC -o .libs/CommCalls.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT CommCalls.lo -MD -MP -MF .deps/CommCalls.Tpo -c ../../src/CommCalls.cc -o CommCalls.o >/dev/null 2>&1
depbase=`echo DescriptorSet.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; if /bin/sh ../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DescriptorSet.lo -MD -MP -MF "$depbase.Tpo" -c -o DescriptorSet.lo ../../src/DescriptorSet.cc; then mv -f "$depbase.Tpo" "$depbase.Plo"; else rm -f "$depbase.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DescriptorSet.lo -MD -MP -MF .deps/DescriptorSet.Tpo -c ../../src/DescriptorSet.cc -fPIC -DPIC -o .libs/DescriptorSet.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DescriptorSet.lo -MD -MP -MF .deps/DescriptorSet.Tpo -c ../../src/DescriptorSet.cc -o DescriptorSet.o >/dev/null 2>&1
depbase=`echo SquidConfig.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; if /bin/sh ../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT SquidConfig.lo -MD -MP -MF "$depbase.Tpo" -c -o SquidConfig.lo ../../src/SquidConfig.cc; then mv -f "$depbase.Tpo" "$depbase.Plo"; else rm -f "$depbase.Tpo"; exit 1; fi
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT SquidConfig.lo -MD -MP -MF .deps/SquidConfig.Tpo -c ../../src/SquidConfig.cc -fPIC -DPIC -o .libs/SquidConfig.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT SquidConfig.lo -MD -MP -MF .deps/SquidConfig.Tpo -c ../../src/SquidConfig.cc -o SquidConfig.o >/dev/null 2>&1
/bin/sh ../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o libsquid.la comm.lo CommCalls.lo DescriptorSet.lo SquidConfig.lo
libtool: link: /usr/bin/ar cru .libs/libsquid.a .libs/comm.o .libs/CommCalls.o .libs/DescriptorSet.o .libs/SquidConfig.o
libtool: link: ranlib .libs/libsquid.a
libtool: link: ( cd ".libs" && rm -f "libsquid.la" && ln -s "../libsquid.la" "libsquid.la" )
depbase=`echo DiskIO/DiskDaemon/diskd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/DiskDaemon/diskd.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/DiskDaemon/diskd.o ../../src/DiskIO/DiskDaemon/diskd.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo time.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT time.o -MD -MP -MF "$depbase.Tpo" -c -o time.o ../../src/time.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
/bin/sh ../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o DiskIO/DiskDaemon/diskd DiskIO/DiskDaemon/diskd.o time.o -L../lib -lmiscutil ../compat/libcompat.la -lm
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o DiskIO/DiskDaemon/diskd DiskIO/DiskDaemon/diskd.o time.o -L<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/lib> -lmiscutil ../compat/.libs/libcompat.a -lm
/usr/local/lib/gcc/i386-unknown-openbsd4.7/4.2.4/../../../libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
/usr/local/lib/gcc/i386-unknown-openbsd4.7/4.2.4/../../../libestdc++.so.11.0: warning: strcpy() is almost always misused, please use strlcpy()
/usr/local/lib/gcc/i386-unknown-openbsd4.7/4.2.4/../../../libestdc++.so.11.0: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/gcc/i386-unknown-openbsd4.7/4.2.4/../../../libestdc++.so.11.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo unlinkd_daemon.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT unlinkd_daemon.o -MD -MP -MF "$depbase.Tpo" -c -o unlinkd_daemon.o ../../src/unlinkd_daemon.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo SquidNew.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT SquidNew.o -MD -MP -MF "$depbase.Tpo" -c -o SquidNew.o ../../src/SquidNew.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
/bin/sh ../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o unlinkd unlinkd_daemon.o SquidNew.o auth/libacls.la ident/libident.la acl/libacls.la eui/libeui.la acl/libstate.la auth/libauth.la acl/libapi.la base/libbase.la libsquid.la ip/libip.la fs/libfs.la ipc/libipc.la -L../lib -lmiscutil -lm
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o unlinkd unlinkd_daemon.o SquidNew.o auth/.libs/libacls.a ident/.libs/libident.a acl/.libs/libacls.a eui/.libs/libeui.a acl/.libs/libstate.a auth/.libs/libauth.a acl/.libs/libapi.a base/.libs/libbase.a ./.libs/libsquid.a ip/.libs/libip.a fs/.libs/libfs.a ipc/.libs/libipc.a -L<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/lib> -lmiscutil -lm
/usr/local/lib/gcc/i386-unknown-openbsd4.7/4.2.4/../../../libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
/usr/local/lib/gcc/i386-unknown-openbsd4.7/4.2.4/../../../libestdc++.so.11.0: warning: strcpy() is almost always misused, please use strlcpy()
/usr/local/lib/gcc/i386-unknown-openbsd4.7/4.2.4/../../../libestdc++.so.11.0: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/gcc/i386-unknown-openbsd4.7/4.2.4/../../../libestdc++.so.11.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo AclRegs.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT AclRegs.o -MD -MP -MF "$depbase.Tpo" -c -o AclRegs.o ../../src/AclRegs.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo AuthReg.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT AuthReg.o -MD -MP -MF "$depbase.Tpo" -c -o AuthReg.o ../../src/AuthReg.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo AsyncEngine.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT AsyncEngine.o -MD -MP -MF "$depbase.Tpo" -c -o AsyncEngine.o ../../src/AsyncEngine.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo cache_cf.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT cache_cf.o -MD -MP -MF "$depbase.Tpo" -c -o cache_cf.o ../../src/cache_cf.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo ProtoPort.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ProtoPort.o -MD -MP -MF "$depbase.Tpo" -c -o ProtoPort.o ../../src/ProtoPort.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo CacheDigest.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT CacheDigest.o -MD -MP -MF "$depbase.Tpo" -c -o CacheDigest.o ../../src/CacheDigest.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo cache_manager.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT cache_manager.o -MD -MP -MF "$depbase.Tpo" -c -o cache_manager.o ../../src/cache_manager.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo carp.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT carp.o -MD -MP -MF "$depbase.Tpo" -c -o carp.o ../../src/carp.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo cbdata.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT cbdata.o -MD -MP -MF "$depbase.Tpo" -c -o cbdata.o ../../src/cbdata.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo ChunkedCodingParser.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ChunkedCodingParser.o -MD -MP -MF "$depbase.Tpo" -c -o ChunkedCodingParser.o ../../src/ChunkedCodingParser.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo client_db.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT client_db.o -MD -MP -MF "$depbase.Tpo" -c -o client_db.o ../../src/client_db.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo client_side.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT client_side.o -MD -MP -MF "$depbase.Tpo" -c -o client_side.o ../../src/client_side.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo client_side_reply.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT client_side_reply.o -MD -MP -MF "$depbase.Tpo" -c -o client_side_reply.o ../../src/client_side_reply.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo client_side_request.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT client_side_request.o -MD -MP -MF "$depbase.Tpo" -c -o client_side_request.o ../../src/client_side_request.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo BodyPipe.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT BodyPipe.o -MD -MP -MF "$depbase.Tpo" -c -o BodyPipe.o ../../src/BodyPipe.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo clientStream.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT clientStream.o -MD -MP -MF "$depbase.Tpo" -c -o clientStream.o ../../src/clientStream.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo CompletionDispatcher.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT CompletionDispatcher.o -MD -MP -MF "$depbase.Tpo" -c -o CompletionDispatcher.o ../../src/CompletionDispatcher.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo comm_select.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT comm_select.o -MD -MP -MF "$depbase.Tpo" -c -o comm_select.o ../../src/comm_select.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo comm_select_win32.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT comm_select_win32.o -MD -MP -MF "$depbase.Tpo" -c -o comm_select_win32.o ../../src/comm_select_win32.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo comm_poll.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT comm_poll.o -MD -MP -MF "$depbase.Tpo" -c -o comm_poll.o ../../src/comm_poll.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo comm_epoll.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT comm_epoll.o -MD -MP -MF "$depbase.Tpo" -c -o comm_epoll.o ../../src/comm_epoll.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo comm_kqueue.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT comm_kqueue.o -MD -MP -MF "$depbase.Tpo" -c -o comm_kqueue.o ../../src/comm_kqueue.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo ConfigOption.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ConfigOption.o -MD -MP -MF "$depbase.Tpo" -c -o ConfigOption.o ../../src/ConfigOption.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo ConfigParser.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ConfigParser.o -MD -MP -MF "$depbase.Tpo" -c -o ConfigParser.o ../../src/ConfigParser.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo debug.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT debug.o -MD -MP -MF "$depbase.Tpo" -c -o debug.o ../../src/debug.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo disk.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT disk.o -MD -MP -MF "$depbase.Tpo" -c -o disk.o ../../src/disk.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/DiskIOModule.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/DiskIOModule.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/DiskIOModule.o ../../src/DiskIO/DiskIOModule.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/ReadRequest.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/ReadRequest.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/ReadRequest.o ../../src/DiskIO/ReadRequest.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DiskIO/WriteRequest.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DiskIO/WriteRequest.o -MD -MP -MF "$depbase.Tpo" -c -o DiskIO/WriteRequest.o ../../src/DiskIO/WriteRequest.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo dlink.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT dlink.o -MD -MP -MF "$depbase.Tpo" -c -o dlink.o ../../src/dlink.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo dns_internal.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT dns_internal.o -MD -MP -MF "$depbase.Tpo" -c -o dns_internal.o ../../src/dns_internal.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo DnsLookupDetails.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT DnsLookupDetails.o -MD -MP -MF "$depbase.Tpo" -c -o DnsLookupDetails.o ../../src/DnsLookupDetails.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo errorpage.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT errorpage.o -MD -MP -MF "$depbase.Tpo" -c -o errorpage.o ../../src/errorpage.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo ETag.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ETag.o -MD -MP -MF "$depbase.Tpo" -c -o ETag.o ../../src/ETag.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo event.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT event.o -MD -MP -MF "$depbase.Tpo" -c -o event.o ../../src/event.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo EventLoop.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT EventLoop.o -MD -MP -MF "$depbase.Tpo" -c -o EventLoop.o ../../src/EventLoop.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo external_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT external_acl.o -MD -MP -MF "$depbase.Tpo" -c -o external_acl.o ../../src/external_acl.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo ExternalACLEntry.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ExternalACLEntry.o -MD -MP -MF "$depbase.Tpo" -c -o ExternalACLEntry.o ../../src/ExternalACLEntry.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo FadingCounter.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT FadingCounter.o -MD -MP -MF "$depbase.Tpo" -c -o FadingCounter.o ../../src/FadingCounter.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo fd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT fd.o -MD -MP -MF "$depbase.Tpo" -c -o fd.o ../../src/fd.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo fde.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT fde.o -MD -MP -MF "$depbase.Tpo" -c -o fde.o ../../src/fde.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo filemap.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT filemap.o -MD -MP -MF "$depbase.Tpo" -c -o filemap.o ../../src/filemap.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo forward.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT forward.o -MD -MP -MF "$depbase.Tpo" -c -o forward.o ../../src/forward.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo fqdncache.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT fqdncache.o -MD -MP -MF "$depbase.Tpo" -c -o fqdncache.o ../../src/fqdncache.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo ftp.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT ftp.o -MD -MP -MF "$depbase.Tpo" -c -o ftp.o ../../src/ftp.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo gopher.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT gopher.o -MD -MP -MF "$depbase.Tpo" -c -o gopher.o ../../src/gopher.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo helper.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT helper.o -MD -MP -MF "$depbase.Tpo" -c -o helper.o ../../src/helper.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo HelperChildConfig.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT HelperChildConfig.o -MD -MP -MF "$depbase.Tpo" -c -o HelperChildConfig.o ../../src/HelperChildConfig.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo htcp.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT htcp.o -MD -MP -MF "$depbase.Tpo" -c -o htcp.o ../../src/htcp.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo http.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I/usr/local/include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -MT http.o -MD -MP -MF "$depbase.Tpo" -c -o http.o ../../src/http.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
cc1plus: warnings being treated as errors
../../src/http.cc: In member function 'virtual bool HttpStateData::getMoreRequestBody(MemBuf&)':
../../src/http.cc:2155: warning: format '%llX' expects type 'long long unsigned int', but argument 3 has type 'long int'
*** Error code 1

Stop in <http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src> (line 104 of /usr/share/mk/sys.mk).
*** Error code 1

Stop in <http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src> (line 4341 of Makefile).
*** Error code 1

Stop in <http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src> (line 3465 of Makefile).
*** Error code 1

Stop in <http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default/squid-3.HEAD-BZR/_build> (line 467 of Makefile).
*** Error code 1

Stop in <http://build.squid-cache.org/job/3.HEAD-i386-OpenBSD/ws/btlayer-00-default> (line 663 of Makefile).
buildtest.sh result is 1
BUILD: .././test-suite/buildtests/layer-00-default.opts
*** Error code 1
*** Error code 1
*** Error code 1
*** Error code 1
*** Error code 1
Build FAILED.
Received on Sat Sep 11 2010 - 02:02:18 MDT

This archive was generated by hypermail 2.2.0 : Sat Sep 11 2010 - 12:00:04 MDT