Build failed in Jenkins: 3.HEAD-amd64-CentOS-5.3 #1961

From: <noc_at_squid-cache.org>
Date: Wed, 18 Jul 2012 20:21:46 +0200 (CEST)

See <http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/1961/changes>

Changes:

[Christos Tsantilas] author: Alex Rousskov <rousskov_at_measurement-factory.com>, Christos Tsantilas <chtsanti_at_users.sourceforge.net>
SslBump: Support bump-ssl-server-first and mimic SSL server certificates.

Summary: These changes allow Squid working in SslBump mode to peek at
the origin server certificate and mimic peeked server certificate
properties in the generated fake certificate, all prior to establishing
a secure connection with the client:
http://wiki.squid-cache.org/Features/BumpSslServerFirst
http://wiki.squid-cache.org/Features/MimicSslServerCert

The changes are required to bump intercepted SSL connections without
excessive browser warnings. The changes allow to disable bumping of some
intercepted SSL connections, forcing Squid to go into a TCP tunnel mode
for those connections.

The changes also empower end user to examine and either honor or bypass
most origin SSL server certificate errors. Prior to these changes, the
responsibility for ignoring certificate validation errors belonged
exclusively to Squid, necessarily leaving users in the dark if errors
are ignored/bypassed.

Squid can still be configured to emulate old bump-ssl-client-first
behavior. However, a manual revision of ssl_bump options is required
during upgrade because ssl_bump no longer supports an implicit "negate
the last one" rule (and it is risky to let Squid guess what the admin
true intent was or mix old- and new-style rules).

Finally, fake certificate generation has been significantly improved.
The new code guarantees that all identically configured Squids receiving
identical origin server certificates will generate identical fake
certificates, even if those Squid instances are running on different
hosts, at different times, and do not communicate with each other. Such
stable, reproducible certificates are required for distributed,
scalable, or fail-safe Squid deployment.

Overall, the changes are meant to make SslBump more powerful and safer.
The code has been tested in several independent labs.

Specific major changes are highlighted below:

Make bumping algorithm selectable using ACLs. Even though
bump-server-first is an overall better method, bumping the client first
is useful for backward compatibility and possibly for serving internal
Squid objects (such as icons inside Squid error pages). The following
example bumps special and most other requests only, using the old
bump-client-first approach for the special requests only:

ssl_bump client-first specialOnes
ssl_bump server-first mostOthers
ssl_bump none all

It allow use the old ssl_bump syntax:
ssl_bump allow/deny acl ...
but warns the user to update squid configuration.

Added sslproxy_cert_adapt squid.conf option to overwrite default mimicking
behavior when generating SSL certificates. See squid.conf.documented.

Added sslproxy_cert_sign squid.conf option to control how generated SSL
certificates are signed. See squid.conf.documented.

Added ssl::certHasExpired, ssl::certNotYetValid, ssl::certDomainMismatch,
ssl::certUntrusted, and ssl::certSelfSign predefined ACLs to squid.conf.

Do not require http[s]_port's key option to be set if cert option is given.
The fixed behavior for bumped connections now matches squid.conf docs.

Generate stable fake certificates by using signing and true certificate
hashes as the serial number and by using the configured CA private key
for all fake certificates.

Use minimal, trusted certificate for serving SSL errors to the client
instead of trying to mimic the broken true certificate (which results
in double error for the user: browser error dialog plus Squid error page).

To mimic "untrusted" true certificates, generate an untrusted CA certificate
from the configured trusted CA certificate. This both reduces configuration
effort (compared to a configuration option) and results in identical
untrusted fake certificates given identical Squid configurations.

Intelligent handling of CONNECT denials: Do not connect to origin
servers unless CONNECT is successfully authenticated. Delay errors.Added sslproxy_cert_sign squid.conf option to control how generated SSL
certificates are signed. See squid.conf.documented.

Provide '%I' error page formatting code with enough information to avoid
displaying '[unknown]' on SQUID_X509_V_ERR_DOMAIN_MISMATCH errors.

Set logged status code (%<Hs) to 200 when establishing a bumped tunnel.

Improved error detailing and logging: Forget most retried errors.
During SslBump errors, the error details are now logged with both the
initial CONNECT transaction and the first tunneled HTTP transaction.
Do not report system errors as custom Squid errors. Do not report
system errors that did not necessarily happen during the transaction
being logged.

Check SSL server certificate when reconnecting to the origin server for
bumped requests. Despite pinning, Squid maintains two separate connections
and the server may disconnect while the client is still sending requests. To
minimize deployment problems, we reconnect to the origin server but check
that its certificate (which we mimicked for the client) has not changed
much.

Forward bumped server connection-close signal to the bumped client to
improve the "dumb tunnel" appearance of the bumped SSL tunnel.

Allow bumping of CONNECT requests without allow-direct set on http_port.
Previously, that flag was required to allow bumped requests to go direct
because they were (and, sometimes, still are) considered "accelerated".

Send SNI information to the server when server-first bumping a non-IP
CONNECT request.

Better helper-to-Squid buffer size management to support large certificates.

Bypass rare OpenSSL certificate serialization failures when composing an
ssl_crtd request by generating the certificate in the Squid process.

When generating certificate CN names, strip [] surrounding host names,
assuming they are for IPv6 addresses. Bracketed CNs confuse browsers.

Disable persistent connections after client-side-detected errors. They cause
"abandoning such and such connection" warnings, stuck ConnStateData jobs, and
other problems.

HttpRequest::SetHost() must invalidate HttpRequest::canonical "cache".

Implement ssl::bump_mode logformat code to log SslBump decisions: prints "none",
"client-first", "server-first" or "-" for no ssl-bump enabled ports

Synced with trunk (trunk r12216, v3.2.0.18+)

This is a Measurement Factory project.

[Christos Tsantilas] Bug 3478: Partial fix: Connection-auth on intercepted connections is broken
Currenty in the case of intercepted connections each request is open a new
connection to the destination server, even if the connection is a valid pinned
connection.
This patch fixes this problem and reuses pinned connections on intercepted
requests.

This is a Measurement Factory project

[Alex Rousskov] Bug 3551: store_rebuild.cc:116: "store_errors == 0" assertion

Fail with an explanation instead of asserting. The assertion fails when a ufs
cache_dir's swap.state has inconsistencies AND the user starts Squid with a -S
command line option. Normally, such inconsistencies are ignored and many of
them are benign. For example, a missing cache file with an ADD record in
swap.state is such an inconsistency.

The -S option was meant to help developers troubleshoot inconsistencies by
analyzing core dumps, but (a) admins treat assertions as Squid bugs and file
bug reports and (b) in most cases, it is really difficult to find the
inconsistency when Squid asserts after detecting all of them (and leaving the
detection context).

We now explicitly tell the admin what their options are and quit instead of
asserting.

TODO: Consider adding a ufs cache_dir option that checks for and removes
inconsistencies instead of not checking at all (default) or checking and
quitting (-S). This is difficult because some valid cache entries may look
inconsistent while they are being updated and some invalid cache entries
are not visible to Squid without a full directory scan.

------------------------------------------
[...truncated 16824 lines...]
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT AtomicWord.lo -MD -MP -MF .deps/AtomicWord.Tpo -c ../../../src/ipc/AtomicWord.cc -o AtomicWord.o
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT FdNotes.lo -MD -MP -MF .deps/FdNotes.Tpo -c ../../../src/ipc/FdNotes.cc -o FdNotes.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Kid.lo -MD -MP -MF .deps/Kid.Tpo -c ../../../src/ipc/Kid.cc -o Kid.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Kids.lo -MD -MP -MF .deps/Kids.Tpo -c ../../../src/ipc/Kids.cc -o Kids.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Queue.lo -MD -MP -MF ".deps/Queue.Tpo" -c -o Queue.lo ../../../src/ipc/Queue.cc; \
        then mv -f ".deps/Queue.Tpo" ".deps/Queue.Plo"; else rm -f ".deps/Queue.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Queue.lo -MD -MP -MF .deps/Queue.Tpo -c ../../../src/ipc/Queue.cc -o Queue.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT ReadWriteLock.lo -MD -MP -MF ".deps/ReadWriteLock.Tpo" -c -o ReadWriteLock.lo ../../../src/ipc/ReadWriteLock.cc; \
        then mv -f ".deps/ReadWriteLock.Tpo" ".deps/ReadWriteLock.Plo"; else rm -f ".deps/ReadWriteLock.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT ReadWriteLock.lo -MD -MP -MF .deps/ReadWriteLock.Tpo -c ../../../src/ipc/ReadWriteLock.cc -o ReadWriteLock.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StartListening.lo -MD -MP -MF .deps/StartListening.Tpo -c ../../../src/ipc/StartListening.cc -o StartListening.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StoreMap.lo -MD -MP -MF ".deps/StoreMap.Tpo" -c -o StoreMap.lo ../../../src/ipc/StoreMap.cc; \
        then mv -f ".deps/StoreMap.Tpo" ".deps/StoreMap.Plo"; else rm -f ".deps/StoreMap.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StoreMap.lo -MD -MP -MF .deps/StoreMap.Tpo -c ../../../src/ipc/StoreMap.cc -o StoreMap.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StrandCoord.lo -MD -MP -MF ".deps/StrandCoord.Tpo" -c -o StrandCoord.lo ../../../src/ipc/StrandCoord.cc; \
        then mv -f ".deps/StrandCoord.Tpo" ".deps/StrandCoord.Plo"; else rm -f ".deps/StrandCoord.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StrandCoord.lo -MD -MP -MF .deps/StrandCoord.Tpo -c ../../../src/ipc/StrandCoord.cc -o StrandCoord.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StrandSearch.lo -MD -MP -MF ".deps/StrandSearch.Tpo" -c -o StrandSearch.lo ../../../src/ipc/StrandSearch.cc; \
        then mv -f ".deps/StrandSearch.Tpo" ".deps/StrandSearch.Plo"; else rm -f ".deps/StrandSearch.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StrandSearch.lo -MD -MP -MF .deps/StrandSearch.Tpo -c ../../../src/ipc/StrandSearch.cc -o StrandSearch.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT SharedListen.lo -MD -MP -MF .deps/SharedListen.Tpo -c ../../../src/ipc/SharedListen.cc -o SharedListen.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT TypedMsgHdr.lo -MD -MP -MF .deps/TypedMsgHdr.Tpo -c ../../../src/ipc/TypedMsgHdr.cc -o TypedMsgHdr.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Coordinator.lo -MD -MP -MF .deps/Coordinator.Tpo -c ../../../src/ipc/Coordinator.cc -o Coordinator.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT UdsOp.lo -MD -MP -MF .deps/UdsOp.Tpo -c ../../../src/ipc/UdsOp.cc -o UdsOp.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Port.lo -MD -MP -MF .deps/Port.Tpo -c ../../../src/ipc/Port.cc -o Port.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Strand.lo -MD -MP -MF .deps/Strand.Tpo -c ../../../src/ipc/Strand.cc -o Strand.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Forwarder.lo -MD -MP -MF ".deps/Forwarder.Tpo" -c -o Forwarder.lo ../../../src/ipc/Forwarder.cc; \
        then mv -f ".deps/Forwarder.Tpo" ".deps/Forwarder.Plo"; else rm -f ".deps/Forwarder.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Forwarder.lo -MD -MP -MF .deps/Forwarder.Tpo -c ../../../src/ipc/Forwarder.cc -o Forwarder.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Inquirer.lo -MD -MP -MF ".deps/Inquirer.Tpo" -c -o Inquirer.lo ../../../src/ipc/Inquirer.cc; \
        then mv -f ".deps/Inquirer.Tpo" ".deps/Inquirer.Plo"; else rm -f ".deps/Inquirer.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Inquirer.lo -MD -MP -MF .deps/Inquirer.Tpo -c ../../../src/ipc/Inquirer.cc -o Inquirer.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Page.lo -MD -MP -MF ".deps/Page.Tpo" -c -o Page.lo `test -f 'mem/Page.cc' || echo '../../../src/ipc/'`mem/Page.cc; \
        then mv -f ".deps/Page.Tpo" ".deps/Page.Plo"; else rm -f ".deps/Page.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Page.lo -MD -MP -MF .deps/Page.Tpo -c ../../../src/ipc/mem/Page.cc -o Page.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT PagePool.lo -MD -MP -MF ".deps/PagePool.Tpo" -c -o PagePool.lo `test -f 'mem/PagePool.cc' || echo '../../../src/ipc/'`mem/PagePool.cc; \
        then mv -f ".deps/PagePool.Tpo" ".deps/PagePool.Plo"; else rm -f ".deps/PagePool.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT PagePool.lo -MD -MP -MF .deps/PagePool.Tpo -c ../../../src/ipc/mem/PagePool.cc -o PagePool.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Pages.lo -MD -MP -MF ".deps/Pages.Tpo" -c -o Pages.lo `test -f 'mem/Pages.cc' || echo '../../../src/ipc/'`mem/Pages.cc; \
        then mv -f ".deps/Pages.Tpo" ".deps/Pages.Plo"; else rm -f ".deps/Pages.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Pages.lo -MD -MP -MF .deps/Pages.Tpo -c ../../../src/ipc/mem/Pages.cc -o Pages.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT PageStack.lo -MD -MP -MF ".deps/PageStack.Tpo" -c -o PageStack.lo `test -f 'mem/PageStack.cc' || echo '../../../src/ipc/'`mem/PageStack.cc; \
        then mv -f ".deps/PageStack.Tpo" ".deps/PageStack.Plo"; else rm -f ".deps/PageStack.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT PageStack.lo -MD -MP -MF .deps/PageStack.Tpo -c ../../../src/ipc/mem/PageStack.cc -o PageStack.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Segment.lo -MD -MP -MF ".deps/Segment.Tpo" -c -o Segment.lo `test -f 'mem/Segment.cc' || echo '../../../src/ipc/'`mem/Segment.cc; \
        then mv -f ".deps/Segment.Tpo" ".deps/Segment.Plo"; else rm -f ".deps/Segment.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Segment.lo -MD -MP -MF .deps/Segment.Tpo -c ../../../src/ipc/mem/Segment.cc -o Segment.o
/bin/sh ../../libtool --tag=CXX --mode=link g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -g -o libipc.la AtomicWord.lo FdNotes.lo Kid.lo Kids.lo Queue.lo ReadWriteLock.lo StartListening.lo StoreMap.lo StrandCoord.lo StrandSearch.lo SharedListen.lo TypedMsgHdr.lo Coordinator.lo UdsOp.lo Port.lo Strand.lo Forwarder.lo Inquirer.lo Page.lo PagePool.lo Pages.lo PageStack.lo Segment.lo
libtool: link: /usr/bin/ar cru .libs/libipc.a AtomicWord.o FdNotes.o Kid.o Kids.o Queue.o ReadWriteLock.o StartListening.o StoreMap.o StrandCoord.o StrandSearch.o SharedListen.o TypedMsgHdr.o Coordinator.o UdsOp.o Port.o Strand.o Forwarder.o Inquirer.o Page.o PagePool.o Pages.o PageStack.o Segment.o
libtool: link: ranlib .libs/libipc.a
libtool: link: ( cd ".libs" && rm -f "libipc.la" && ln -s "../libipc.la" "libipc.la" )
make[4]: Leaving directory `<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_build/src/ipc'>
Making all in mgr
make[4]: Entering directory `<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_build/src/mgr'>
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Action.lo -MD -MP -MF ".deps/Action.Tpo" -c -o Action.lo ../../../src/mgr/Action.cc; \
        then mv -f ".deps/Action.Tpo" ".deps/Action.Plo"; else rm -f ".deps/Action.Tpo"; exit 1; fi
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT ActionParams.lo -MD -MP -MF ".deps/ActionParams.Tpo" -c -o ActionParams.lo ../../../src/mgr/ActionParams.cc; \
        then mv -f ".deps/ActionParams.Tpo" ".deps/ActionParams.Plo"; else rm -f ".deps/ActionParams.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Action.lo -MD -MP -MF .deps/Action.Tpo -c ../../../src/mgr/Action.cc -o Action.o
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT ActionParams.lo -MD -MP -MF .deps/ActionParams.Tpo -c ../../../src/mgr/ActionParams.cc -o ActionParams.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT ActionWriter.lo -MD -MP -MF ".deps/ActionWriter.Tpo" -c -o ActionWriter.lo ../../../src/mgr/ActionWriter.cc; \
        then mv -f ".deps/ActionWriter.Tpo" ".deps/ActionWriter.Plo"; else rm -f ".deps/ActionWriter.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT ActionWriter.lo -MD -MP -MF .deps/ActionWriter.Tpo -c ../../../src/mgr/ActionWriter.cc -o ActionWriter.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT BasicActions.lo -MD -MP -MF ".deps/BasicActions.Tpo" -c -o BasicActions.lo ../../../src/mgr/BasicActions.cc; \
        then mv -f ".deps/BasicActions.Tpo" ".deps/BasicActions.Plo"; else rm -f ".deps/BasicActions.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT BasicActions.lo -MD -MP -MF .deps/BasicActions.Tpo -c ../../../src/mgr/BasicActions.cc -o BasicActions.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Command.lo -MD -MP -MF ".deps/Command.Tpo" -c -o Command.lo ../../../src/mgr/Command.cc; \
        then mv -f ".deps/Command.Tpo" ".deps/Command.Plo"; else rm -f ".deps/Command.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Command.lo -MD -MP -MF .deps/Command.Tpo -c ../../../src/mgr/Command.cc -o Command.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT CountersAction.lo -MD -MP -MF ".deps/CountersAction.Tpo" -c -o CountersAction.lo ../../../src/mgr/CountersAction.cc; \
        then mv -f ".deps/CountersAction.Tpo" ".deps/CountersAction.Plo"; else rm -f ".deps/CountersAction.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT CountersAction.lo -MD -MP -MF .deps/CountersAction.Tpo -c ../../../src/mgr/CountersAction.cc -o CountersAction.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Filler.lo -MD -MP -MF ".deps/Filler.Tpo" -c -o Filler.lo ../../../src/mgr/Filler.cc; \
        then mv -f ".deps/Filler.Tpo" ".deps/Filler.Plo"; else rm -f ".deps/Filler.Tpo"; exit 1; fi
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Forwarder.lo -MD -MP -MF ".deps/Forwarder.Tpo" -c -o Forwarder.lo ../../../src/mgr/Forwarder.cc; \
        then mv -f ".deps/Forwarder.Tpo" ".deps/Forwarder.Plo"; else rm -f ".deps/Forwarder.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Filler.lo -MD -MP -MF .deps/Filler.Tpo -c ../../../src/mgr/Filler.cc -o Filler.o
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Forwarder.lo -MD -MP -MF .deps/Forwarder.Tpo -c ../../../src/mgr/Forwarder.cc -o Forwarder.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT FunAction.lo -MD -MP -MF ".deps/FunAction.Tpo" -c -o FunAction.lo ../../../src/mgr/FunAction.cc; \
        then mv -f ".deps/FunAction.Tpo" ".deps/FunAction.Plo"; else rm -f ".deps/FunAction.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT FunAction.lo -MD -MP -MF .deps/FunAction.Tpo -c ../../../src/mgr/FunAction.cc -o FunAction.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT InfoAction.lo -MD -MP -MF ".deps/InfoAction.Tpo" -c -o InfoAction.lo ../../../src/mgr/InfoAction.cc; \
        then mv -f ".deps/InfoAction.Tpo" ".deps/InfoAction.Plo"; else rm -f ".deps/InfoAction.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT InfoAction.lo -MD -MP -MF .deps/InfoAction.Tpo -c ../../../src/mgr/InfoAction.cc -o InfoAction.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Inquirer.lo -MD -MP -MF ".deps/Inquirer.Tpo" -c -o Inquirer.lo ../../../src/mgr/Inquirer.cc; \
        then mv -f ".deps/Inquirer.Tpo" ".deps/Inquirer.Plo"; else rm -f ".deps/Inquirer.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Inquirer.lo -MD -MP -MF .deps/Inquirer.Tpo -c ../../../src/mgr/Inquirer.cc -o Inquirer.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT IntervalAction.lo -MD -MP -MF ".deps/IntervalAction.Tpo" -c -o IntervalAction.lo ../../../src/mgr/IntervalAction.cc; \
        then mv -f ".deps/IntervalAction.Tpo" ".deps/IntervalAction.Plo"; else rm -f ".deps/IntervalAction.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT IntervalAction.lo -MD -MP -MF .deps/IntervalAction.Tpo -c ../../../src/mgr/IntervalAction.cc -o IntervalAction.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT IoAction.lo -MD -MP -MF ".deps/IoAction.Tpo" -c -o IoAction.lo ../../../src/mgr/IoAction.cc; \
        then mv -f ".deps/IoAction.Tpo" ".deps/IoAction.Plo"; else rm -f ".deps/IoAction.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT IoAction.lo -MD -MP -MF .deps/IoAction.Tpo -c ../../../src/mgr/IoAction.cc -o IoAction.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Registration.lo -MD -MP -MF ".deps/Registration.Tpo" -c -o Registration.lo ../../../src/mgr/Registration.cc; \
        then mv -f ".deps/Registration.Tpo" ".deps/Registration.Plo"; else rm -f ".deps/Registration.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Registration.lo -MD -MP -MF .deps/Registration.Tpo -c ../../../src/mgr/Registration.cc -o Registration.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Request.lo -MD -MP -MF ".deps/Request.Tpo" -c -o Request.lo ../../../src/mgr/Request.cc; \
        then mv -f ".deps/Request.Tpo" ".deps/Request.Plo"; else rm -f ".deps/Request.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Request.lo -MD -MP -MF .deps/Request.Tpo -c ../../../src/mgr/Request.cc -o Request.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Response.lo -MD -MP -MF ".deps/Response.Tpo" -c -o Response.lo ../../../src/mgr/Response.cc; \
        then mv -f ".deps/Response.Tpo" ".deps/Response.Plo"; else rm -f ".deps/Response.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT Response.lo -MD -MP -MF .deps/Response.Tpo -c ../../../src/mgr/Response.cc -o Response.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT ServiceTimesAction.lo -MD -MP -MF ".deps/ServiceTimesAction.Tpo" -c -o ServiceTimesAction.lo ../../../src/mgr/ServiceTimesAction.cc; \
        then mv -f ".deps/ServiceTimesAction.Tpo" ".deps/ServiceTimesAction.Plo"; else rm -f ".deps/ServiceTimesAction.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT ServiceTimesAction.lo -MD -MP -MF .deps/ServiceTimesAction.Tpo -c ../../../src/mgr/ServiceTimesAction.cc -o ServiceTimesAction.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StoreIoAction.lo -MD -MP -MF ".deps/StoreIoAction.Tpo" -c -o StoreIoAction.lo ../../../src/mgr/StoreIoAction.cc; \
        then mv -f ".deps/StoreIoAction.Tpo" ".deps/StoreIoAction.Plo"; else rm -f ".deps/StoreIoAction.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StoreIoAction.lo -MD -MP -MF .deps/StoreIoAction.Tpo -c ../../../src/mgr/StoreIoAction.cc -o StoreIoAction.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StoreToCommWriter.lo -MD -MP -MF ".deps/StoreToCommWriter.Tpo" -c -o StoreToCommWriter.lo ../../../src/mgr/StoreToCommWriter.cc; \
        then mv -f ".deps/StoreToCommWriter.Tpo" ".deps/StoreToCommWriter.Plo"; else rm -f ".deps/StoreToCommWriter.Tpo"; exit 1; fi
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT QueryParams.lo -MD -MP -MF ".deps/QueryParams.Tpo" -c -o QueryParams.lo ../../../src/mgr/QueryParams.cc; \
        then mv -f ".deps/QueryParams.Tpo" ".deps/QueryParams.Plo"; else rm -f ".deps/QueryParams.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StoreToCommWriter.lo -MD -MP -MF .deps/StoreToCommWriter.Tpo -c ../../../src/mgr/StoreToCommWriter.cc -o StoreToCommWriter.o
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT QueryParams.lo -MD -MP -MF .deps/QueryParams.Tpo -c ../../../src/mgr/QueryParams.cc -o QueryParams.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT IntParam.lo -MD -MP -MF ".deps/IntParam.Tpo" -c -o IntParam.lo ../../../src/mgr/IntParam.cc; \
        then mv -f ".deps/IntParam.Tpo" ".deps/IntParam.Plo"; else rm -f ".deps/IntParam.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT IntParam.lo -MD -MP -MF .deps/IntParam.Tpo -c ../../../src/mgr/IntParam.cc -o IntParam.o
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StringParam.lo -MD -MP -MF ".deps/StringParam.Tpo" -c -o StringParam.lo ../../../src/mgr/StringParam.cc; \
        then mv -f ".deps/StringParam.Tpo" ".deps/StringParam.Plo"; else rm -f ".deps/StringParam.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT StringParam.lo -MD -MP -MF .deps/StringParam.Tpo -c ../../../src/mgr/StringParam.cc -o StringParam.o
/bin/sh ../../libtool --tag=CXX --mode=link g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -g -o libmgr.la Action.lo ActionParams.lo ActionWriter.lo BasicActions.lo Command.lo CountersAction.lo Filler.lo Forwarder.lo FunAction.lo InfoAction.lo Inquirer.lo IntervalAction.lo IoAction.lo Registration.lo Request.lo Response.lo ServiceTimesAction.lo StoreIoAction.lo StoreToCommWriter.lo QueryParams.lo IntParam.lo StringParam.lo
libtool: link: /usr/bin/ar cru .libs/libmgr.a Action.o ActionParams.o ActionWriter.o BasicActions.o Command.o CountersAction.o Filler.o Forwarder.o FunAction.o InfoAction.o Inquirer.o IntervalAction.o IoAction.o Registration.o Request.o Response.o ServiceTimesAction.o StoreIoAction.o StoreToCommWriter.o QueryParams.o IntParam.o StringParam.o
libtool: link: ranlib .libs/libmgr.a
libtool: link: ( cd ".libs" && rm -f "libmgr.la" && ln -s "../libmgr.la" "libmgr.la" )
make[4]: Leaving directory `<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_build/src/mgr'>
make[4]: Entering directory `<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_build/src'>
depbase=`echo comm.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; \
        if /bin/sh ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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
depbase=`echo CommCalls.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; \
        if /bin/sh ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT CommCalls.lo -MD -MP -MF .deps/CommCalls.Tpo -c ../../src/CommCalls.cc -o CommCalls.o
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT comm.lo -MD -MP -MF .deps/comm.Tpo -c ../../src/comm.cc -o comm.o
depbase=`echo DescriptorSet.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; \
        if /bin/sh ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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: g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT DescriptorSet.lo -MD -MP -MF .deps/DescriptorSet.Tpo -c ../../src/DescriptorSet.cc -o DescriptorSet.o
depbase=`echo SquidConfig.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; \
        if /bin/sh ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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
depbase=`echo dnsserver.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; \
        if g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT dnsserver.o -MD -MP -MF "$depbase.Tpo" -c -o dnsserver.o ../../src/dnsserver.cc; \
        then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT SquidConfig.lo -MD -MP -MF .deps/SquidConfig.Tpo -c ../../src/SquidConfig.cc -o SquidConfig.o
depbase=`echo AclRegs.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; \
        if g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 AccessLogEntry.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; \
        if g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -MT AccessLogEntry.o -MD -MP -MF "$depbase.Tpo" -c -o AccessLogEntry.o ../../src/AccessLogEntry.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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 CacheDigest.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; \
        if g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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 g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_inst/etc\"> -I../.. -I../../include -I../../lib -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -g -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
../../src/client_side_request.cc: In member function ‘void ClientRequestContext::clientAccessCheckDone(const allow_t&)’:
../../src/client_side_request.cc:831: error: ‘class ErrorState’ has no member named ‘auth_user_request’
../../src/client_side_request.cc:832: error: ‘class ConnStateData’ has no member named ‘auth_user_request’
../../src/client_side_request.cc:833: error: ‘class ConnStateData’ has no member named ‘auth_user_request’
../../src/client_side_request.cc:833: error: ‘class HttpRequest’ has no member named ‘auth_user_request’
make[4]: *** [client_side_request.o] Error 1
make[4]: *** Waiting for unfinished jobs....
make[4]: Leaving directory `<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_build/src'>
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_build/src'>
make[2]: *** [all] Error 2
make[2]: Leaving directory `<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_build/src'>
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `<http://build.squid-cache.org/job/3.HEAD-amd64-CentOS-5.3/ws/btlayer-01-minimal/squid-3.HEAD-BZR/_build'>
make: *** [distcheck] Error 2
buildtest.sh result is 2
BUILD: .././test-suite/buildtests/layer-01-minimal.opts
configure: BUILD LIBRARIES:
configure: BUILD EXTRA LIBRARIES: -lm -lnsl -lresolv -lrt -ldl -ldl
configure: BUILD OBJECTS:
configure: BUILD EXTRA OBJECTS:
configure: BUILD C FLAGS: -Wall -g
configure: BUILD EXTRA C FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe
configure: BUILD C++ FLAGS: -g
configure: BUILD EXTRA C++ FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe
configure: BUILD LIBRARIES:
configure: BUILD EXTRA LIBRARIES: -lm -lnsl -lresolv -lrt -ldl -ldl
configure: BUILD OBJECTS:
configure: BUILD EXTRA OBJECTS:
configure: BUILD C FLAGS: -Wall -g
configure: BUILD EXTRA C FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -pipe
configure: BUILD C++ FLAGS: -g
configure: BUILD EXTRA C++ FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe
../../src/client_side_request.cc:831: error: ‘class ErrorState’ has no member named ‘auth_user_request’
../../src/client_side_request.cc:832: error: ‘class ConnStateData’ has no member named ‘auth_user_request’
../../src/client_side_request.cc:833: error: ‘class ConnStateData’ has no member named ‘auth_user_request’
../../src/client_side_request.cc:833: error: ‘class HttpRequest’ has no member named ‘auth_user_request’
make[4]: *** [client_side_request.o] Error 1
make[3]: *** [all-recursive] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [distcheck] Error 2
Build FAILED.
Build step 'Execute shell' marked build as failure
Received on Wed Jul 18 2012 - 18:21:49 MDT

This archive was generated by hypermail 2.2.0 : Thu Jul 19 2012 - 12:00:03 MDT