Build failed in Hudson: 3.2-i386-OpenBSD.4 #10

From: <noc_at_squid-cache.org>
Date: Tue, 12 Oct 2010 16:14:46 +0200 (CEST)

See <http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/10/changes>

Changes:

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Use DISTCHECK_CONFIGURE_FLAGS to make recursive distcheck work again.

DISTCHECK_CONFIGURE_FLAGS is a magic automake macro for the
distcheck target recursive tests between scripted runs.
we use it to perform the same duty between our nested scripts.

We used it earlier but lost it through a bit of forgetfulness. Documented
now to prevent that happening again.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Polish FTP login error handing

Reverts a regression added recently that blocked the challenge events.
Fixes another potential nul-pointer dereference bug.

* 421/426 server overload equate to HTTP overload. But do special such that
the credentials are asked of the browser on retries.

* 43x and 53x FTP status are all credentials failures of various types.
Other failures are not credential related.
This leaves the other non-credential errors as general failures.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Fix xstrto.h stdbool wrapping

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Alex Rousskov <rousskov_at_measurement-factory.com>
Author: Amos Jeffries <squid3_at_treenet.co.nz>
API for subscribing AsyncCall handlers to event producers

This API allows AsyncCall handlers to be subscribed for receiving multiple
event callbacks from producer/factory classes.

Intended use-cases include the main port listeners which are started once.
Run for a long time. And over their lifetime need to generate multiple
calls to any one of several handlers without having specific type details
hard-coded about the calls they are spawning.
ie they cannot use "new X(y,z)" because they are not aware of y and z.
Nor can one AsyncCall be scheduled and fired multiple times.

Other use-cases already sighted are UDP readers and event timers.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Document PconnPool

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Andrew Beverley <andy_at_andybev.com>
Netfilter MARK support for QoS

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Andrew Beverley <andy_at_andybev.com>
Fix variable name clash in heap.c

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Unlink RefCount smart-pointer constness from its data.

Reason for having this in the first place is unknown. Several of the dev
agree there seems to be no reason to keep it and many to remove:

* The data RefCount points to is always dynamic
* The data pointed to is deleted with the last reference
* Its desirable to pass pointers around as const knowing that they will
not be changed to point at another object, but still manipulate the
data object itself.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Stefan Fritsch <sf_at_sfritsch.de>
Bug 3073: tunnelStateFree memory leak of host member

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Alex Rousskov <rousskov_at_measurement-factory.com>
HTTP Compliance: Send Age:0 header even if it may break IE5.

Removed a hack that prevented zero-valued Age header from being sent to HTTP
clients. The hack was added around January 2000 and is related to the
following patch:
http://devel.squid-cache.org/hno/patches/squid-2.2.STABLE5.age.patch

The above patch sites IE5 as the possible culprit that hangs when processing
zero Age responses.

If we get complaints about broken browsers not being able to handle
zero-valued Age headers, we can make Age:0 header inclusion conditional
on something like SUPPORT_IE5 #define or even on the User-Agent value.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Alex Rousskov <rousskov_at_measurement-factory.com>
HTTP Compliance: do not cache replies to requests with CC/no-store.

Per RFC 2616, do not store any part of response to requests with a no-store
Cache-Control directive.

We may still _serve_ no-store requests from the cache because RFC 2616 does not
seem to prohibit that. This may change if HTTPbis or developers decide to
prohibit no-store hits.

Co-Advisor test case:
test_case/rfc2616/ccReqDirMsg-no-store-basic

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Alex Rousskov <rousskov_at_measurement-factory.com>
HTTP Compliance: reply with 504 (Gateway Timeout) if required validation fails.

RFC 2616 says that we MUST reply with 504 (Gateway Timeout) if validation
fails and cached reply has proxy-revalidate, must-revalidate or s-maxage
Cache-Control directive.

FwdState::makeConnectingError() method is added to set error status depending
on whether the request was a validation request.

Co-Advisor test cases:
test_case/rfc2616/noSrv-hit-must-reval-s-maxage-resp
test_case/rfc2616/noSrv-hit-must-reval-proxy-revalidate-resp
test_case/rfc2616/noSrv-hit-must-reval-must-revalidate-resp

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Alex Rousskov <rousskov_at_measurement-factory.com>
HTTP Compliance: support requests with Cache-Control: min-fresh.

Added min-fresh directive support for Cache-Control header. The directive is
handled in refreshCheck() by incrementing age and check_time by min-fresh
value.

Co-Advisor test case:
test_case/rfc2616/ccReqDirMsg-min-fresh-obey

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Autor: Alex Rousskov <rousskov_at_measurement-factory.com>
HTTP Compliance: add appropriate Warnings if serving a stale hit.

Per RFC 2616, we MUST add "110 Response is stale" Warning if serving a
stale reply for any reason, including configured overrides. We MUST add
"111 Revalidation failed" Warning if serving a stale reply because an
attempt to revalidate the response failed, due to an inability to reach
the server.

The patch adds a new stale_if_hit request flag, which is set in
refreshCheckHTTP() when entry freshness is calculated. refreshCheckHTTP()
is now called in offline mode, to set stale_if_hit properly. We check for
the offline mode before returning from refreshCheckHTTP() to preserve the
original logic.

refreshCheckHTTP() is no longer called for internal requests, to avoid
setting of stale_if_hit flag. It did not do anything important for
internal requests anyway.

Co-Advisor test cases:
test_case/rfc2616/noSrv-hit-stale-max-age-req
test_case/rfc2616/ccReqDirMsg-max-stale-warning

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Autor: Alex Rousskov <rousskov_at_measurement-factory.com>
Use InstanceId for async job and calls identification.

Side-effect: removes inconsistent prefixes for job debugging: ecapxN, icapxN,
asyncN are now all jobN, simplifying searching and processing debugging logs.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Alex Rousskov <rousskov_at_measurement-factory.com>
Added InstanceId to uniquely identify concurrent messages, transactions, etc.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Alex Rousskov <rousskov_at_measurement-factory.com>
Accept ICAP OPTIONS responses with unknown body types.

Warn about the unknown OPTIONS body type but ignore it instead of rejecting
the entire OPTIONS response. Note that ICAP does not standardize OPTIONS
body types, and Squid does not recognize any body type.

ICAP servers are supposed to negotiate the use of OPTIONS bodies but
negotiation mechanism is not standardized and some do not negotiate at all.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Updated 3.2 release notes.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Enhance source maintenance scripts astyle detection

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Alex Rousskov <rousskov_at_measurement-factory.com>
Cleanup ETag comparison functions in preparation for If-Match support.

Replace etagIsEqual() with etagIsStrongEqual() function that does proper strong
ETag comparison instead of asserting on weak ETags.

Add etagIsWeakEqual() function for weak ETag comparison. Currently unused.

Both etagIs*Equal() functions call etagStringsMatch() helper to compare the tags.

No runtime behavior changes expected.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] More unit-tests for HTTP request first in parser.

Catches strange integer values for the version.

------------------------------------------
[...truncated 3475 lines...]
Testing ../../../src/comm ...Ok.
PASS: testHeaders
==================
All 1 tests passed
==================
Making check in eui
make
make check-TESTS
/bin/sh ../../../test-suite/testheaders.sh "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" "../../../src/eui" || exit 1
Testing ../../../src/eui ...Ok.
PASS: testHeaders
==================
All 1 tests passed
==================
Making check in acl
make
make check-TESTS
/bin/sh ../../../test-suite/testheaders.sh "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" "../../../src/acl" || exit 1
Testing ../../../src/acl ...Ok.
PASS: testHeaders
==================
All 1 tests passed
==================
Making check in fs
make
make check-TESTS
/bin/sh ../../../test-suite/testheaders.sh "ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -I../../../src/fs -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2" || exit 1
PASS: testHeaders
==================
All 1 tests passed
==================
Making check in repl
make
make check-TESTS
/bin/sh ../../../test-suite/testheaders.sh "ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -I/usr/local/include -I../../../src/repl -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2" || exit 1
PASS: testHeaders
==================
All 1 tests passed
==================
Making check in auth
make
make check-TESTS
/bin/sh ../../../test-suite/testheaders.sh "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" || exit 1
PASS: testHeaders
==================
All 1 tests passed
==================
Making check in ip
make testIpAddress
if 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 testAddress.o -MD -MP -MF ".deps/testAddress.Tpo" -c -o testAddress.o ../../../src/ip/testAddress.cc; then mv -f ".deps/testAddress.Tpo" ".deps/testAddress.Po"; else rm -f ".deps/testAddress.Tpo"; exit 1; fi
if 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 testMain.o -MD -MP -MF ".deps/testMain.Tpo" -c -o testMain.o `test -f '../../../src/tests/testMain.cc' || echo '../../../src/ip/'`../../../src/tests/testMain.cc; then mv -f ".deps/testMain.Tpo" ".deps/testMain.Po"; else rm -f ".deps/testMain.Tpo"; exit 1; fi
if 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 test_tools.o -MD -MP -MF ".deps/test_tools.Tpo" -c -o test_tools.o `test -f '../../../test-suite/test_tools.cc' || echo '../../../src/ip/'`../../../test-suite/test_tools.cc; then mv -f ".deps/test_tools.Tpo" ".deps/test_tools.Po"; else rm -f ".deps/test_tools.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 testIpAddress testAddress.o testMain.o test_tools.o libip.la -lm -L../../lib -lmiscutil ../../compat/libcompat.la -L/usr/local/lib -lcppunit
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o testIpAddress testAddress.o testMain.o test_tools.o ./.libs/libip.a -L<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_build/lib> -lmiscutil ../../compat/.libs/libcompat.a -L/usr/local/lib -lcppunit -lm -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
/usr/local/lib/libestdc++.so.11.0: warning: strcpy() is almost always misused, please use strlcpy()
/usr/local/lib/libestdc++.so.11.0: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
make check-TESTS
/bin/sh ../../../test-suite/testheaders.sh "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" "../../../src/ip" || exit 1
Testing ../../../src/ip ...Ok.
PASS: testHeaders
stub time| Unable to convert '192.168.100.12' to the rDNS type requested.
.................
OK (17)
PASS: testIpAddress
==================
All 2 tests passed
==================
Making check in icmp
make testIcmp
if 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 testIcmp.o -MD -MP -MF ".deps/testIcmp.Tpo" -c -o testIcmp.o ../../../src/icmp/testIcmp.cc; then mv -f ".deps/testIcmp.Tpo" ".deps/testIcmp.Po"; else rm -f ".deps/testIcmp.Tpo"; exit 1; fi
if 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 testMain.o -MD -MP -MF ".deps/testMain.Tpo" -c -o testMain.o `test -f '../../../src/tests/testMain.cc' || echo '../../../src/icmp/'`../../../src/tests/testMain.cc; then mv -f ".deps/testMain.Tpo" ".deps/testMain.Po"; else rm -f ".deps/testMain.Tpo"; exit 1; fi
if 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 time.o -MD -MP -MF ".deps/time.Tpo" -c -o time.o `test -f '../../../src/time.cc' || echo '../../../src/icmp/'`../../../src/time.cc; then mv -f ".deps/time.Tpo" ".deps/time.Po"; else rm -f ".deps/time.Tpo"; exit 1; fi
if 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 test_tools.o -MD -MP -MF ".deps/test_tools.Tpo" -c -o test_tools.o `test -f '../../../test-suite/test_tools.cc' || echo '../../../src/icmp/'`../../../test-suite/test_tools.cc; then mv -f ".deps/test_tools.Tpo" ".deps/test_tools.Po"; else rm -f ".deps/test_tools.Tpo"; exit 1; fi
if 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 globals.o -MD -MP -MF ".deps/globals.Tpo" -c -o globals.o `test -f '../../src/globals.cc' || echo '../../../src/icmp/'`../../src/globals.cc; then mv -f ".deps/globals.Tpo" ".deps/globals.Po"; else rm -f ".deps/globals.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 testIcmp testIcmp.o testMain.o time.o test_tools.o globals.o -L/usr/local/lib -lcppunit libicmp-core.la ../ip/libip.la -lm ../../lib/libmiscutil.a
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o testIcmp testIcmp.o testMain.o time.o test_tools.o globals.o -L/usr/local/lib -lcppunit ./.libs/libicmp-core.a ../ip/.libs/libip.a -lm ../../lib/libmiscutil.a -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
/usr/local/lib/libestdc++.so.11.0: warning: strcpy() is almost always misused, please use strlcpy()
/usr/local/lib/libestdc++.so.11.0: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
make check-TESTS
/bin/sh ../../../test-suite/testheaders.sh "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" "../../../src/icmp" || exit 1
Testing ../../../src/icmp ...Ok.
PASS: testHeaders

OK (0)
PASS: testIcmp
==================
All 2 tests passed
==================
Making check in ident
make
make check-TESTS
/bin/sh ../../../test-suite/testheaders.sh "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" "../../../src/ident" || exit 1
Testing ../../../src/ident ...Ok.
PASS: testHeaders
==================
All 1 tests passed
==================
Making check in log
make
make check-TESTS
/bin/sh ../../../test-suite/testheaders.sh "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" "../../../src/log" || exit 1
Testing ../../../src/log ...Ok.
PASS: testHeaders
==================
All 1 tests passed
==================
Making check in ipc
make
make check-TESTS
/bin/sh ../../../test-suite/testheaders.sh "ccache g++ -DHAVE_CONFIG_H -DDEFAULT_PREFIX=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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" "../../../src/ipc" || exit 1
Testing ../../../src/ipc ...Ok.
PASS: testHeaders
==================
All 1 tests passed
==================
make tests/testAuth tests/testACLMaxUserIP tests/testBoilerplate tests/testCacheManager tests/testDiskIO tests/testEvent tests/testEventLoop tests/test_http_range tests/testHttpReply tests/testHttpRequest tests/testStore tests/testString tests/testURL tests/testUfs
depbase=`echo tests/testAuth.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testAuth.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testAuth.o ../../src/tests/testAuth.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/testMain.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testMain.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testMain.o ../../src/tests/testMain.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_acl.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_acl.o ../../src/tests/stub_acl.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_cache_cf.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_cache_cf.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_cache_cf.o ../../src/tests/stub_cache_cf.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_helper.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_helper.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_helper.o ../../src/tests/stub_helper.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_store.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_store.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_store.o ../../src/tests/stub_store.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_errorpage.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_errorpage.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_errorpage.o ../../src/tests/stub_errorpage.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_HttpRequest.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_HttpRequest.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_HttpRequest.o ../../src/tests/stub_HttpRequest.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_DelayId.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_DelayId.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_DelayId.o ../../src/tests/stub_DelayId.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_MemObject.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_MemObject.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_MemObject.o ../../src/tests/stub_MemObject.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_cache_manager.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_cache_manager.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_cache_manager.o ../../src/tests/stub_cache_manager.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_access_log.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_access_log.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_access_log.o ../../src/tests/stub_access_log.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_comm.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_comm.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_comm.o ../../src/tests/stub_comm.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_http.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_http.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_http.o ../../src/tests/stub_http.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_mime.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_mime.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_mime.o ../../src/tests/stub_mime.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
cp ../../test-suite/test_tools.cc .
depbase=`echo test_tools.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 test_tools.o -MD -MP -MF "$depbase.Tpo" -c -o test_tools.o test_tools.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 tests/testAuth tests/testAuth.o tests/testMain.o ConfigParser.o HelperChildConfig.o tests/stub_acl.o tests/stub_cache_cf.o tests/stub_helper.o cbdata.o String.o tests/stub_store.o HttpHeaderTools.o HttpHeader.o mem.o MemBuf.o HttpHdrContRange.o Packer.o HttpHdrCc.o HttpHdrSc.o HttpHdrScTarget.o url.o StatHist.o HttpHdrRange.o ETag.o tests/stub_errorpage.o tests/stub_HttpRequest.o tests/stub_DelayId.o tests/stub_MemObject.o mem_node.o tests/stub_cache_manager.o stmem.o HttpMsg.o HttpRequestMethod.o tests/stub_access_log.o tests/stub_comm.o tests/stub_http.o tests/stub_mime.o time.o URLScheme.o event.o wordlist.o test_tools.o globals.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 -L/usr/local/lib -lcppunit -lm
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o tests/testAuth tests/testAuth.o tests/testMain.o ConfigParser.o HelperChildConfig.o tests/stub_acl.o tests/stub_cache_cf.o tests/stub_helper.o cbdata.o String.o tests/stub_store.o HttpHeaderTools.o HttpHeader.o mem.o MemBuf.o HttpHdrContRange.o Packer.o HttpHdrCc.o HttpHdrSc.o HttpHdrScTarget.o url.o StatHist.o HttpHdrRange.o ETag.o tests/stub_errorpage.o tests/stub_HttpRequest.o tests/stub_DelayId.o tests/stub_MemObject.o mem_node.o tests/stub_cache_manager.o stmem.o HttpMsg.o HttpRequestMethod.o tests/stub_access_log.o tests/stub_comm.o tests/stub_http.o tests/stub_mime.o time.o URLScheme.o event.o wordlist.o test_tools.o globals.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.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_build/lib> -lmiscutil -L/usr/local/lib -lcppunit -lm -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
url.o(.text+0x3dd): In function `urlCanonicalClean':
../../src/url.cc:529: warning: strcpy() is almost always misused, please use strlcpy()
/usr/local/lib/libestdc++.so.11.0: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo tests/testACLMaxUserIP.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testACLMaxUserIP.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testACLMaxUserIP.o ../../src/tests/testACLMaxUserIP.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 tests/testACLMaxUserIP cbdata.o ConfigParser.o ETag.o HelperChildConfig.o HttpHeader.o HttpHeaderTools.o HttpHdrContRange.o HttpHdrRange.o HttpHdrCc.o HttpHdrSc.o HttpHdrScTarget.o mem_node.o Packer.o Parsing.o StatHist.o stmem.o String.o event.o tests/stub_cache_cf.o tests/stub_comm.o tests/stub_DelayId.o tests/stub_MemObject.o tests/stub_store.o tests/stub_cache_manager.o tests/testACLMaxUserIP.o tests/testMain.o time.o mem.o MemBuf.o wordlist.o test_tools.o globals.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 -L/usr/local/lib -lcppunit -lm
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o tests/testACLMaxUserIP cbdata.o ConfigParser.o ETag.o HelperChildConfig.o HttpHeader.o HttpHeaderTools.o HttpHdrContRange.o HttpHdrRange.o HttpHdrCc.o HttpHdrSc.o HttpHdrScTarget.o mem_node.o Packer.o Parsing.o StatHist.o stmem.o String.o event.o tests/stub_cache_cf.o tests/stub_comm.o tests/stub_DelayId.o tests/stub_MemObject.o tests/stub_store.o tests/stub_cache_manager.o tests/testACLMaxUserIP.o tests/testMain.o time.o mem.o MemBuf.o wordlist.o test_tools.o globals.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.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_build/lib> -lmiscutil -L/usr/local/lib -lcppunit -lm -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
/usr/local/lib/libestdc++.so.11.0: warning: strcpy() is almost always misused, please use strlcpy()
/usr/local/lib/libestdc++.so.11.0: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo tests/testBoilerplate.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testBoilerplate.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testBoilerplate.o ../../src/tests/testBoilerplate.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 tests/testBoilerplate tests/testBoilerplate.o tests/testMain.o time.o test_tools.o globals.o -L../lib -lmiscutil -L/usr/local/lib -lcppunit -lm
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o tests/testBoilerplate tests/testBoilerplate.o tests/testMain.o time.o test_tools.o globals.o -L<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_build/lib> -lmiscutil -L/usr/local/lib -lcppunit -lm -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
/usr/local/lib/libestdc++.so.11.0: warning: strcpy() is almost always misused, please use strlcpy()
/usr/local/lib/libestdc++.so.11.0: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo tests/testCacheManager.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testCacheManager.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testCacheManager.o ../../src/tests/testCacheManager.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_main_cc.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_main_cc.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_main_cc.o ../../src/tests/stub_main_cc.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 tests/testCacheManager AclRegs.o AuthReg.o debug.o HttpRequest.o HttpRequestMethod.o mem.o String.o tests/testCacheManager.o tests/testMain.o tests/stub_main_cc.o time.o BodyPipe.o cache_manager.o cache_cf.o ProtoPort.o CacheDigest.o carp.o cbdata.o ChunkedCodingParser.o client_db.o client_side.o client_side_reply.o client_side_request.o clientStream.o comm_select.o comm_select_win32.o comm_poll.o comm_epoll.o comm_kqueue.o ConfigOption.o ConfigParser.o CpuAffinityMap.o CpuAffinitySet.o disk.o dlink.o dns_internal.o DnsLookupDetails.o errorpage.o ETag.o external_acl.o ExternalACLEntry.o fd.o fde.o forward.o fqdncache.o ftp.o gopher.o helper.o HelperChildConfig.o htcp.o http.o HttpBody.o HttpHeader.o HttpHeaderTools.o HttpHdrCc.o HttpHdrContRange.o HttpHdrRange.o HttpHdrSc.o HttpHdrScTarget.o HttpMsg.o HttpReply.o HttpStatusLine.o icp_v2.o icp_v3.o ipc.o ipcache.o int.o internal.o list.o multicast.o mem_node.o MemBuf.o MemObject.o mime.o mime_header.o neighbors.o Packer.o Parsing.o pconn.o peer_digest.o peer_proxy_negotiate_auth.o peer_select.o peer_sourcehash.o peer_userhash.o redirect.o referer.o refresh.o RemovalPolicy.o Server.o snmp_core.o snmp_agent.o SquidMath.o stat.o StatHist.o stmem.o store.o store_client.o store_digest.o store_dir.o store_io.o store_key_md5.o store_log.o store_rebuild.o store_swapin.o store_swapmeta.o store_swapout.o StoreFileSystem.o StoreIOState.o StoreMeta.o StoreMetaMD5.o StoreMetaSTD.o StoreMetaSTDLFS.o StoreMetaUnpacker.o StoreMetaURL.o StoreMetaVary.o StoreSwapLogData.o event.o tools.o tunnel.o SwapDir.o url.o URLScheme.o urn.o useragent.o wccp2.o whois.o FadingCounter.o wordlist.o err_type.o globals.o hier_code.o icp_opcode.o lookup_t.o repl_modules.o swap_log_op.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 comm/libcomm-listener.la icmp/libicmp.la icmp/libicmp-core.la log/liblog.la repl/liblru.a ../snmplib/libsnmp.a -L../lib -lmiscutil -L/usr/local/lib -lcppunit -lm
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o tests/testCacheManager AclRegs.o AuthReg.o debug.o HttpRequest.o HttpRequestMethod.o mem.o String.o tests/testCacheManager.o tests/testMain.o tests/stub_main_cc.o time.o BodyPipe.o cache_manager.o cache_cf.o ProtoPort.o CacheDigest.o carp.o cbdata.o ChunkedCodingParser.o client_db.o client_side.o client_side_reply.o client_side_request.o clientStream.o comm_select.o comm_select_win32.o comm_poll.o comm_epoll.o comm_kqueue.o ConfigOption.o ConfigParser.o CpuAffinityMap.o CpuAffinitySet.o disk.o dlink.o dns_internal.o DnsLookupDetails.o errorpage.o ETag.o external_acl.o ExternalACLEntry.o fd.o fde.o forward.o fqdncache.o ftp.o gopher.o helper.o HelperChildConfig.o htcp.o http.o HttpBody.o HttpHeader.o HttpHeaderTools.o HttpHdrCc.o HttpHdrContRange.o HttpHdrRange.o HttpHdrSc.o HttpHdrScTarget.o HttpMsg.o HttpReply.o HttpStatusLine.o icp_v2.o icp_v3.o ipc.o ipcache.o int.o internal.o list.o multicast.o mem_node.o MemBuf.o MemObject.o mime.o mime_header.o neighbors.o Packer.o Parsing.o pconn.o peer_digest.o peer_proxy_negotiate_auth.o peer_select.o peer_sourcehash.o peer_userhash.o redirect.o referer.o refresh.o RemovalPolicy.o Server.o snmp_core.o snmp_agent.o SquidMath.o stat.o StatHist.o stmem.o store.o store_client.o store_digest.o store_dir.o store_io.o store_key_md5.o store_log.o store_rebuild.o store_swapin.o store_swapmeta.o store_swapout.o StoreFileSystem.o StoreIOState.o StoreMeta.o StoreMetaMD5.o StoreMetaSTD.o StoreMetaSTDLFS.o StoreMetaUnpacker.o StoreMetaURL.o StoreMetaVary.o StoreSwapLogData.o event.o tools.o tunnel.o SwapDir.o url.o URLScheme.o urn.o useragent.o wccp2.o whois.o FadingCounter.o wordlist.o err_type.o globals.o hier_code.o icp_opcode.o lookup_t.o repl_modules.o swap_log_op.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 comm/.libs/libcomm-listener.a icmp/.libs/libicmp.a icmp/.libs/libicmp-core.a log/.libs/liblog.a repl/liblru.a ../snmplib/libsnmp.a -L<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_build/lib> -lmiscutil -L/usr/local/lib -lcppunit -lm -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
cache_cf.o(.text+0xbe36): In function `parseOneConfigFile':
../../src/cache_cf.cc:473: warning: strcpy() is almost always misused, please use strlcpy()
dns_internal.o(.text+0x1f01): In function `idnsALookup':
../../src/dns_internal.cc:1533: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo tests/stub_internal.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_internal.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_internal.o ../../src/tests/stub_internal.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_CommIO.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_CommIO.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_CommIO.o ../../src/tests/stub_CommIO.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_store_rebuild.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_store_rebuild.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_store_rebuild.o ../../src/tests/stub_store_rebuild.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_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.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_client_side_request.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_client_side_request.o ../../src/tests/stub_client_side_request.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_store_client.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_store_client.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_store_client.o ../../src/tests/stub_store_client.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_tools.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_tools.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_tools.o ../../src/tests/stub_tools.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/testStoreSupport.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testStoreSupport.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testStoreSupport.o ../../src/tests/testStoreSupport.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/testDiskIO.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testDiskIO.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testDiskIO.o ../../src/tests/testDiskIO.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_HelperChildConfig.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_HelperChildConfig.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_HelperChildConfig.o ../../src/tests/stub_HelperChildConfig.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 tests/testDiskIO tests/stub_internal.o tests/stub_CommIO.o tests/stub_store_rebuild.o fd.o disk.o filemap.o HttpBody.o HttpReply.o HttpStatusLine.o int.o list.o MemObject.o StoreSwapLogData.o StoreIOState.o StoreMeta.o StoreMetaMD5.o StoreMetaSTD.o StoreMetaSTDLFS.o StoreMetaUnpacker.o StoreMetaURL.o StoreMetaVary.o StoreFileSystem.o store_io.o store_swapout.o store_swapmeta.o unlinkd.o event.o CacheDigest.o ConfigParser.o EventLoop.o HttpMsg.o RemovalPolicy.o store_dir.o store.o HttpRequestMethod.o store_key_md5.o Parsing.o ConfigOption.o SwapDir.o tests/stub_acl.o tests/stub_cache_cf.o tests/stub_helper.o cbdata.o String.o tests/stub_comm.o tests/stub_client_side_request.o tests/stub_http.o mem_node.o stmem.o tests/stub_mime.o HttpHeaderTools.o HttpHeader.o mem.o MemBuf.o HttpHdrContRange.o Packer.o HttpHdrCc.o HttpHdrSc.o HttpHdrScTarget.o url.o StatHist.o HttpHdrRange.o ETag.o tests/stub_errorpage.o tests/stub_HttpRequest.o tests/stub_access_log.o refresh.o tests/stub_store_client.o tests/stub_tools.o tests/testStoreSupport.o time.o URLScheme.o wordlist.o DiskIO/DiskIOModule.o DiskIO/ReadRequest.o DiskIO/WriteRequest.o tests/testDiskIO.o tests/testMain.o tests/stub_cache_manager.o tests/stub_HelperChildConfig.o test_tools.o globals.o DiskIO/DiskIOModules_gen.o SquidMath.o swap_log_op.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 repl/liblru.a libBlocking.a libDiskDaemon.a libDiskThreads.a -lpthread -L../lib -lmiscutil acl/libapi.la -L/usr/local/lib -lcppunit -lm libBlocking.a libDiskDaemon.a libDiskThreads.a -lpthread 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 SquidConfig.o -lm
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o tests/testDiskIO tests/stub_internal.o tests/stub_CommIO.o tests/stub_store_rebuild.o fd.o disk.o filemap.o HttpBody.o HttpReply.o HttpStatusLine.o int.o list.o MemObject.o StoreSwapLogData.o StoreIOState.o StoreMeta.o StoreMetaMD5.o StoreMetaSTD.o StoreMetaSTDLFS.o StoreMetaUnpacker.o StoreMetaURL.o StoreMetaVary.o StoreFileSystem.o store_io.o store_swapout.o store_swapmeta.o unlinkd.o event.o CacheDigest.o ConfigParser.o EventLoop.o HttpMsg.o RemovalPolicy.o store_dir.o store.o HttpRequestMethod.o store_key_md5.o Parsing.o ConfigOption.o SwapDir.o tests/stub_acl.o tests/stub_cache_cf.o tests/stub_helper.o cbdata.o String.o tests/stub_comm.o tests/stub_client_side_request.o tests/stub_http.o mem_node.o stmem.o tests/stub_mime.o HttpHeaderTools.o HttpHeader.o mem.o MemBuf.o HttpHdrContRange.o Packer.o HttpHdrCc.o HttpHdrSc.o HttpHdrScTarget.o url.o StatHist.o HttpHdrRange.o ETag.o tests/stub_errorpage.o tests/stub_HttpRequest.o tests/stub_access_log.o refresh.o tests/stub_store_client.o tests/stub_tools.o tests/testStoreSupport.o time.o URLScheme.o wordlist.o DiskIO/DiskIOModule.o DiskIO/ReadRequest.o DiskIO/WriteRequest.o tests/testDiskIO.o tests/testMain.o tests/stub_cache_manager.o tests/stub_HelperChildConfig.o test_tools.o globals.o DiskIO/DiskIOModules_gen.o SquidMath.o swap_log_op.o SquidConfig.o repl/liblru.a -L<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_build/lib> -lmiscutil -L/usr/local/lib -lcppunit libBlocking.a libDiskDaemon.a libDiskThreads.a -lpthread 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 -lm -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
url.o(.text+0x3dd): In function `urlCanonicalClean':
../../src/url.cc:529: warning: strcpy() is almost always misused, please use strlcpy()
/usr/local/lib/libestdc++.so.11.0: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo tests/testEvent.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testEvent.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testEvent.o ../../src/tests/testEvent.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 tests/testEvent AclRegs.o AuthReg.o debug.o EventLoop.o HttpRequest.o HttpRequestMethod.o mem.o RemovalPolicy.o String.o tests/testEvent.o tests/testMain.o tests/stub_main_cc.o time.o BodyPipe.o cache_manager.o cache_cf.o ProtoPort.o CacheDigest.o carp.o cbdata.o ChunkedCodingParser.o client_db.o client_side.o client_side_reply.o client_side_request.o clientStream.o comm_select.o comm_select_win32.o comm_poll.o comm_epoll.o comm_kqueue.o ConfigOption.o ConfigParser.o CpuAffinityMap.o CpuAffinitySet.o disk.o dlink.o dns_internal.o DnsLookupDetails.o errorpage.o ETag.o external_acl.o ExternalACLEntry.o fd.o fde.o forward.o fqdncache.o ftp.o gopher.o helper.o HelperChildConfig.o htcp.o http.o HttpBody.o HttpHeader.o HttpHeaderTools.o HttpHdrCc.o HttpHdrContRange.o HttpHdrRange.o HttpHdrSc.o HttpHdrScTarget.o HttpMsg.o HttpReply.o HttpStatusLine.o icp_v2.o icp_v3.o ipc.o ipcache.o int.o internal.o list.o multicast.o mem_node.o MemBuf.o MemObject.o mime.o mime_header.o neighbors.o Packer.o Parsing.o pconn.o peer_digest.o peer_proxy_negotiate_auth.o peer_select.o peer_sourcehash.o peer_userhash.o redirect.o referer.o refresh.o Server.o snmp_core.o snmp_agent.o SquidMath.o stat.o StatHist.o stmem.o store.o store_client.o store_digest.o store_dir.o store_io.o store_key_md5.o store_log.o store_rebuild.o store_swapin.o store_swapmeta.o store_swapout.o StoreFileSystem.o StoreIOState.o StoreMeta.o StoreMetaMD5.o StoreMetaSTD.o StoreMetaSTDLFS.o StoreMetaUnpacker.o StoreMetaURL.o StoreMetaVary.o StoreSwapLogData.o event.o tools.o tunnel.o SwapDir.o url.o URLScheme.o urn.o useragent.o wccp2.o whois.o FadingCounter.o wordlist.o err_type.o globals.o hier_code.o icp_opcode.o lookup_t.o repl_modules.o swap_log_op.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 icmp/libicmp.la icmp/libicmp-core.la comm/libcomm-listener.la log/liblog.la repl/liblru.a ../snmplib/libsnmp.a -L../lib -lmiscutil -L/usr/local/lib -lcppunit -lm
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o tests/testEvent AclRegs.o AuthReg.o debug.o EventLoop.o HttpRequest.o HttpRequestMethod.o mem.o RemovalPolicy.o String.o tests/testEvent.o tests/testMain.o tests/stub_main_cc.o time.o BodyPipe.o cache_manager.o cache_cf.o ProtoPort.o CacheDigest.o carp.o cbdata.o ChunkedCodingParser.o client_db.o client_side.o client_side_reply.o client_side_request.o clientStream.o comm_select.o comm_select_win32.o comm_poll.o comm_epoll.o comm_kqueue.o ConfigOption.o ConfigParser.o CpuAffinityMap.o CpuAffinitySet.o disk.o dlink.o dns_internal.o DnsLookupDetails.o errorpage.o ETag.o external_acl.o ExternalACLEntry.o fd.o fde.o forward.o fqdncache.o ftp.o gopher.o helper.o HelperChildConfig.o htcp.o http.o HttpBody.o HttpHeader.o HttpHeaderTools.o HttpHdrCc.o HttpHdrContRange.o HttpHdrRange.o HttpHdrSc.o HttpHdrScTarget.o HttpMsg.o HttpReply.o HttpStatusLine.o icp_v2.o icp_v3.o ipc.o ipcache.o int.o internal.o list.o multicast.o mem_node.o MemBuf.o MemObject.o mime.o mime_header.o neighbors.o Packer.o Parsing.o pconn.o peer_digest.o peer_proxy_negotiate_auth.o peer_select.o peer_sourcehash.o peer_userhash.o redirect.o referer.o refresh.o Server.o snmp_core.o snmp_agent.o SquidMath.o stat.o StatHist.o stmem.o store.o store_client.o store_digest.o store_dir.o store_io.o store_key_md5.o store_log.o store_rebuild.o store_swapin.o store_swapmeta.o store_swapout.o StoreFileSystem.o StoreIOState.o StoreMeta.o StoreMetaMD5.o StoreMetaSTD.o StoreMetaSTDLFS.o StoreMetaUnpacker.o StoreMetaURL.o StoreMetaVary.o StoreSwapLogData.o event.o tools.o tunnel.o SwapDir.o url.o URLScheme.o urn.o useragent.o wccp2.o whois.o FadingCounter.o wordlist.o err_type.o globals.o hier_code.o icp_opcode.o lookup_t.o repl_modules.o swap_log_op.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 icmp/.libs/libicmp.a icmp/.libs/libicmp-core.a comm/.libs/libcomm-listener.a log/.libs/liblog.a repl/liblru.a ../snmplib/libsnmp.a -L<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_build/lib> -lmiscutil -L/usr/local/lib -lcppunit -lm -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
cache_cf.o(.text+0xbe36): In function `parseOneConfigFile':
../../src/cache_cf.cc:473: warning: strcpy() is almost always misused, please use strlcpy()
dns_internal.o(.text+0x1f01): In function `idnsALookup':
../../src/dns_internal.cc:1533: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo tests/testEventLoop.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testEventLoop.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testEventLoop.o ../../src/tests/testEventLoop.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 tests/testEventLoop AclRegs.o AuthReg.o debug.o EventLoop.o HttpRequest.o HttpRequestMethod.o mem.o RemovalPolicy.o String.o tests/testEventLoop.o tests/testMain.o tests/stub_main_cc.o time.o BodyPipe.o cache_manager.o cache_cf.o ProtoPort.o CacheDigest.o carp.o cbdata.o ChunkedCodingParser.o client_db.o client_side.o client_side_reply.o client_side_request.o clientStream.o comm_select.o comm_select_win32.o comm_poll.o comm_epoll.o comm_kqueue.o ConfigOption.o ConfigParser.o CpuAffinityMap.o CpuAffinitySet.o disk.o dlink.o dns_internal.o DnsLookupDetails.o errorpage.o ETag.o external_acl.o ExternalACLEntry.o fd.o fde.o forward.o fqdncache.o ftp.o gopher.o helper.o HelperChildConfig.o htcp.o http.o HttpBody.o HttpHeader.o HttpHeaderTools.o HttpHdrCc.o HttpHdrContRange.o HttpHdrRange.o HttpHdrSc.o HttpHdrScTarget.o HttpMsg.o HttpReply.o HttpStatusLine.o icp_v2.o icp_v3.o ipc.o ipcache.o int.o internal.o list.o multicast.o mem_node.o MemBuf.o MemObject.o mime.o mime_header.o neighbors.o Packer.o Parsing.o pconn.o peer_digest.o peer_proxy_negotiate_auth.o peer_select.o peer_sourcehash.o peer_userhash.o redirect.o referer.o refresh.o Server.o snmp_core.o snmp_agent.o SquidMath.o stat.o StatHist.o stmem.o store.o store_client.o store_digest.o store_dir.o store_io.o store_key_md5.o store_log.o store_rebuild.o store_swapin.o store_swapmeta.o store_swapout.o StoreFileSystem.o StoreIOState.o StoreMeta.o StoreMetaMD5.o StoreMetaSTD.o StoreMetaSTDLFS.o StoreMetaUnpacker.o StoreMetaURL.o StoreMetaVary.o StoreSwapLogData.o event.o tools.o tunnel.o SwapDir.o url.o URLScheme.o urn.o useragent.o wccp2.o whois.o FadingCounter.o wordlist.o err_type.o globals.o hier_code.o icp_opcode.o lookup_t.o repl_modules.o swap_log_op.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 icmp/libicmp.la icmp/libicmp-core.la comm/libcomm-listener.la log/liblog.la repl/liblru.a ../snmplib/libsnmp.a -L../lib -lmiscutil -L/usr/local/lib -lcppunit -lm
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o tests/testEventLoop AclRegs.o AuthReg.o debug.o EventLoop.o HttpRequest.o HttpRequestMethod.o mem.o RemovalPolicy.o String.o tests/testEventLoop.o tests/testMain.o tests/stub_main_cc.o time.o BodyPipe.o cache_manager.o cache_cf.o ProtoPort.o CacheDigest.o carp.o cbdata.o ChunkedCodingParser.o client_db.o client_side.o client_side_reply.o client_side_request.o clientStream.o comm_select.o comm_select_win32.o comm_poll.o comm_epoll.o comm_kqueue.o ConfigOption.o ConfigParser.o CpuAffinityMap.o CpuAffinitySet.o disk.o dlink.o dns_internal.o DnsLookupDetails.o errorpage.o ETag.o external_acl.o ExternalACLEntry.o fd.o fde.o forward.o fqdncache.o ftp.o gopher.o helper.o HelperChildConfig.o htcp.o http.o HttpBody.o HttpHeader.o HttpHeaderTools.o HttpHdrCc.o HttpHdrContRange.o HttpHdrRange.o HttpHdrSc.o HttpHdrScTarget.o HttpMsg.o HttpReply.o HttpStatusLine.o icp_v2.o icp_v3.o ipc.o ipcache.o int.o internal.o list.o multicast.o mem_node.o MemBuf.o MemObject.o mime.o mime_header.o neighbors.o Packer.o Parsing.o pconn.o peer_digest.o peer_proxy_negotiate_auth.o peer_select.o peer_sourcehash.o peer_userhash.o redirect.o referer.o refresh.o Server.o snmp_core.o snmp_agent.o SquidMath.o stat.o StatHist.o stmem.o store.o store_client.o store_digest.o store_dir.o store_io.o store_key_md5.o store_log.o store_rebuild.o store_swapin.o store_swapmeta.o store_swapout.o StoreFileSystem.o StoreIOState.o StoreMeta.o StoreMetaMD5.o StoreMetaSTD.o StoreMetaSTDLFS.o StoreMetaUnpacker.o StoreMetaURL.o StoreMetaVary.o StoreSwapLogData.o event.o tools.o tunnel.o SwapDir.o url.o URLScheme.o urn.o useragent.o wccp2.o whois.o FadingCounter.o wordlist.o err_type.o globals.o hier_code.o icp_opcode.o lookup_t.o repl_modules.o swap_log_op.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 icmp/.libs/libicmp.a icmp/.libs/libicmp-core.a comm/.libs/libcomm-listener.a log/.libs/liblog.a repl/liblru.a ../snmplib/libsnmp.a -L<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_build/lib> -lmiscutil -L/usr/local/lib -lcppunit -lm -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
cache_cf.o(.text+0xbe36): In function `parseOneConfigFile':
../../src/cache_cf.cc:473: warning: strcpy() is almost always misused, please use strlcpy()
dns_internal.o(.text+0x1f01): In function `idnsALookup':
../../src/dns_internal.cc:1533: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo tests/test_http_range.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/test_http_range.o -MD -MP -MF "$depbase.Tpo" -c -o tests/test_http_range.o ../../src/tests/test_http_range.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 tests/test_http_range AclRegs.o AuthReg.o tests/test_http_range.o BodyPipe.o cache_cf.o ProtoPort.o cache_manager.o CacheDigest.o carp.o cbdata.o ChunkedCodingParser.o client_db.o client_side.o client_side_reply.o client_side_request.o clientStream.o comm_select.o comm_select_win32.o comm_poll.o comm_epoll.o comm_kqueue.o ConfigOption.o ConfigParser.o CpuAffinityMap.o CpuAffinitySet.o tests/stub_main_cc.o debug.o disk.o dlink.o dns_internal.o DnsLookupDetails.o errorpage.o ETag.o external_acl.o ExternalACLEntry.o fd.o fde.o forward.o fqdncache.o ftp.o gopher.o helper.o HelperChildConfig.o htcp.o http.o HttpBody.o HttpHdrCc.o HttpHdrContRange.o HttpHdrRange.o HttpHdrSc.o HttpHdrScTarget.o HttpHeader.o HttpHeaderTools.o HttpMsg.o HttpReply.o HttpRequest.o HttpRequestMethod.o HttpStatusLine.o icp_v2.o icp_v3.o int.o internal.o ipc.o ipcache.o list.o mem.o mem_node.o MemObject.o mime.o mime_header.o multicast.o neighbors.o Parsing.o peer_digest.o peer_proxy_negotiate_auth.o peer_select.o peer_sourcehash.o peer_userhash.o pconn.o redirect.o referer.o refresh.o RemovalPolicy.o Server.o snmp_core.o snmp_agent.o SquidMath.o stat.o StatHist.o stmem.o store.o store_client.o store_digest.o store_dir.o store_key_md5.o store_io.o store_log.o store_rebuild.o store_swapin.o store_swapmeta.o store_swapout.o StoreFileSystem.o StoreIOState.o StoreMeta.o StoreMetaMD5.o StoreMetaSTD.o StoreMetaSTDLFS.o StoreMetaUnpacker.o StoreMetaURL.o StoreMetaVary.o StoreSwapLogData.o String.o SwapDir.o event.o time.o tools.o tunnel.o url.o URLScheme.o urn.o useragent.o wccp2.o whois.o FadingCounter.o wordlist.o Packer.o MemBuf.o err_type.o globals.o hier_code.o icp_opcode.o lookup_t.o repl_modules.o swap_log_op.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 icmp/libicmp.la icmp/libicmp-core.la comm/libcomm-listener.la log/liblog.la repl/liblru.a ../snmplib/libsnmp.a -L../lib -lmiscutil -L/usr/local/lib -lcppunit -lm
libtool: link: ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -g -o tests/test_http_range AclRegs.o AuthReg.o tests/test_http_range.o BodyPipe.o cache_cf.o ProtoPort.o cache_manager.o CacheDigest.o carp.o cbdata.o ChunkedCodingParser.o client_db.o client_side.o client_side_reply.o client_side_request.o clientStream.o comm_select.o comm_select_win32.o comm_poll.o comm_epoll.o comm_kqueue.o ConfigOption.o ConfigParser.o CpuAffinityMap.o CpuAffinitySet.o tests/stub_main_cc.o debug.o disk.o dlink.o dns_internal.o DnsLookupDetails.o errorpage.o ETag.o external_acl.o ExternalACLEntry.o fd.o fde.o forward.o fqdncache.o ftp.o gopher.o helper.o HelperChildConfig.o htcp.o http.o HttpBody.o HttpHdrCc.o HttpHdrContRange.o HttpHdrRange.o HttpHdrSc.o HttpHdrScTarget.o HttpHeader.o HttpHeaderTools.o HttpMsg.o HttpReply.o HttpRequest.o HttpRequestMethod.o HttpStatusLine.o icp_v2.o icp_v3.o int.o internal.o ipc.o ipcache.o list.o mem.o mem_node.o MemObject.o mime.o mime_header.o multicast.o neighbors.o Parsing.o peer_digest.o peer_proxy_negotiate_auth.o peer_select.o peer_sourcehash.o peer_userhash.o pconn.o redirect.o referer.o refresh.o RemovalPolicy.o Server.o snmp_core.o snmp_agent.o SquidMath.o stat.o StatHist.o stmem.o store.o store_client.o store_digest.o store_dir.o store_key_md5.o store_io.o store_log.o store_rebuild.o store_swapin.o store_swapmeta.o store_swapout.o StoreFileSystem.o StoreIOState.o StoreMeta.o StoreMetaMD5.o StoreMetaSTD.o StoreMetaSTDLFS.o StoreMetaUnpacker.o StoreMetaURL.o StoreMetaVary.o StoreSwapLogData.o String.o SwapDir.o event.o time.o tools.o tunnel.o url.o URLScheme.o urn.o useragent.o wccp2.o whois.o FadingCounter.o wordlist.o Packer.o MemBuf.o err_type.o globals.o hier_code.o icp_opcode.o lookup_t.o repl_modules.o swap_log_op.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 icmp/.libs/libicmp.a icmp/.libs/libicmp-core.a comm/.libs/libcomm-listener.a log/.libs/liblog.a repl/liblru.a ../snmplib/libsnmp.a -L<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_build/lib> -lmiscutil -L/usr/local/lib -lcppunit -lm -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
cache_cf.o(.text+0xbe36): In function `parseOneConfigFile':
../../src/cache_cf.cc:473: warning: strcpy() is almost always misused, please use strlcpy()
dns_internal.o(.text+0x1f01): In function `idnsALookup':
../../src/dns_internal.cc:1533: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo tests/testHttpReply.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testHttpReply.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testHttpReply.o ../../src/tests/testHttpReply.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
depbase=`echo tests/stub_StatHist.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/stub_StatHist.o -MD -MP -MF "$depbase.Tpo" -c -o tests/stub_StatHist.o ../../src/tests/stub_StatHist.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 tests/testHttpReply tests/testHttpReply.o tests/testMain.o cbdata.o ETag.o HttpBody.o HttpHdrCc.o HttpHdrContRange.o HttpHdrRange.o HttpHdrSc.o HttpHdrScTarget.o HttpHeader.o HttpHeaderTools.o HttpMsg.o HttpReply.o HttpStatusLine.o mem.o MemBuf.o mime_header.o Packer.o tests/stub_cache_manager.o tests/stub_HelperChildConfig.o tests/stub_StatHist.o tests/stub_store.o String.o time.o test_tools.o globals.o acl/libapi.la acl/libstate.la auth/libauth.la ip/libip.la base/libbase.la -L/usr/local/lib -lcppunit -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 tests/testHttpReply tests/testHttpReply.o tests/testMain.o cbdata.o ETag.o HttpBody.o HttpHdrCc.o HttpHdrContRange.o HttpHdrRange.o HttpHdrSc.o HttpHdrScTarget.o HttpHeader.o HttpHeaderTools.o HttpMsg.o HttpReply.o HttpStatusLine.o mem.o MemBuf.o mime_header.o Packer.o tests/stub_cache_manager.o tests/stub_HelperChildConfig.o tests/stub_StatHist.o tests/stub_store.o String.o time.o test_tools.o globals.o acl/.libs/libapi.a acl/.libs/libstate.a auth/.libs/libauth.a ip/.libs/libip.a base/.libs/libbase.a -L/usr/local/lib -lcppunit -L<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_build/lib> -lmiscutil ../compat/.libs/libcompat.a -lm -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/local/lib
/usr/local/lib/libestdc++.so.11.0: warning: vsprintf() is often misused, please use vsnprintf()
/usr/local/lib/libestdc++.so.11.0: warning: strcpy() is almost always misused, please use strlcpy()
/usr/local/lib/libestdc++.so.11.0: warning: strcat() is almost always misused, please use strlcat()
/usr/local/lib/libcppunit.so.1.0: warning: sprintf() is often misused, please use snprintf()
depbase=`echo tests/testHttpRequest.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; if ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/ws/btlayer-00-default/squid-3.2.0.2-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 tests/testHttpRequest.o -MD -MP -MF "$depbase.Tpo" -c -o tests/testHttpRequest.o ../../src/tests/testHttpRequest.cc; then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi

cc1plus: out of memory allocating 4072 bytes after a total of 0 bytes
*** Error code 1

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

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

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

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

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

Stop in <http://build.squid-cache.org/job/3.2-i386-OpenBSD.4/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
*** Error code 1
Build FAILED.
Received on Tue Oct 12 2010 - 14:14:49 MDT

This archive was generated by hypermail 2.2.0 : Wed Oct 13 2010 - 12:00:05 MDT