Build failed in Hudson: 3.1-amd64-CentOS.5 #208

From: <noc_at_squid-cache.org>
Date: Sat, 23 Oct 2010 16:19:11 +0200 (CEST)

See <http://build.squid-cache.org/job/3.1-amd64-CentOS.5/208/changes>

Changes:

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Christophe Saout <christophe_at_saout.de>
Bug 3084: IPv6 without Host: header in request causes connection to hang

accel and intercept mode URL re-generation used NtoA instead of ToHostname.
This results in the URL incorrectly wrapping the raw-IPv6 and problems
connecting to non-existent addresses in some cases.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Bug 3082: Typo in error message

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Bug 3036: adaptation_access acls cannot see myportname

Temporary fix to pass myportname to adaptation_access ACLs.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Fix idle struct addrinfo definition.

ai_addrlen is defined formally as socklen_t not size_t. This could have
caused problems if the idle version were ever used.

Found during investigation of bug 3057 by "Anonymous".

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: OpenSolaris Project
Bug 3057: 64-bit Solaris 9 Squid unable to determine peer IP and port

Fix by bundling a cleaner copy by the OpenSolaris authors that contains
backward-compatible fixes for broken Solaris 9 struct addrinfo.

Bundling this header as a full replacement is safer and easier than
hacking around with special struct defines.

[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>] 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: 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>] Author: 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>] 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>] 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.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Bug 3051: integer display overflow

This alters the cachemgr display formatting to use 64-bit integers
instead of 32-bit. Revealing overflows hiding behind display overflows.

[Amos Jeffries <amosjeffries_at_squid-cache.org>] Author: Alex Rousskov <rousskov_at_measurement-factory.com>
HTTP Compliance: Reply with an error if required validation fails.

RFC 2616 says that proxy MUST not use stale entries that have s-maxage,
proxy-revalidate, or must-revalidate cache-directive.

Add new fail_on_validation_err request flag to store result from
refreshCheck(). It is needed to avoid refreshLimits() recalculation in
clientReplyContext::handleIMSReply().

Split LOG_TCP_REFRESH_FAIL into LOG_TCP_REFRESH_FAIL_OLD (stale reply sent)
and LOG_TCP_REFRESH_FAIL_ERR (error forwarded). However, both are still logged
as TCP_REFRESH_FAIL for backward-compatibility with external scripts and such.
We may decide to start logging more detailed codes later.

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

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

------------------------------------------
[...truncated 2974 lines...]
libtool: link: ( cd ".libs" && rm -f "libcompat.la" && ln -s "../libcompat.la" "libcompat.la" )
make[2]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/compat'>
Making all in lib
make[2]: Entering directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/lib'>
make[3]: Entering directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/lib'>
if g++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -MT MemPool.o -MD -MP -MF ".deps/MemPool.Tpo" -c -o MemPool.o ../../lib/MemPool.cc; \
        then mv -f ".deps/MemPool.Tpo" ".deps/MemPool.Po"; else rm -f ".deps/MemPool.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -MT MemPoolChunked.o -MD -MP -MF ".deps/MemPoolChunked.Tpo" -c -o MemPoolChunked.o ../../lib/MemPoolChunked.cc; \
        then mv -f ".deps/MemPoolChunked.Tpo" ".deps/MemPoolChunked.Po"; else rm -f ".deps/MemPoolChunked.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -MT MemPoolMalloc.o -MD -MP -MF ".deps/MemPoolMalloc.Tpo" -c -o MemPoolMalloc.o ../../lib/MemPoolMalloc.cc; \
        then mv -f ".deps/MemPoolMalloc.Tpo" ".deps/MemPoolMalloc.Po"; else rm -f ".deps/MemPoolMalloc.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT base64.o -MD -MP -MF ".deps/base64.Tpo" -c -o base64.o ../../lib/base64.c; \
        then mv -f ".deps/base64.Tpo" ".deps/base64.Po"; else rm -f ".deps/base64.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT charset.o -MD -MP -MF ".deps/charset.Tpo" -c -o charset.o ../../lib/charset.c; \
        then mv -f ".deps/charset.Tpo" ".deps/charset.Po"; else rm -f ".deps/charset.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT getfullhostname.o -MD -MP -MF ".deps/getfullhostname.Tpo" -c -o getfullhostname.o ../../lib/getfullhostname.c; \
        then mv -f ".deps/getfullhostname.Tpo" ".deps/getfullhostname.Po"; else rm -f ".deps/getfullhostname.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT hash.o -MD -MP -MF ".deps/hash.Tpo" -c -o hash.o ../../lib/hash.c; \
        then mv -f ".deps/hash.Tpo" ".deps/hash.Po"; else rm -f ".deps/hash.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT heap.o -MD -MP -MF ".deps/heap.Tpo" -c -o heap.o ../../lib/heap.c; \
        then mv -f ".deps/heap.Tpo" ".deps/heap.Po"; else rm -f ".deps/heap.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT html_quote.o -MD -MP -MF ".deps/html_quote.Tpo" -c -o html_quote.o ../../lib/html_quote.c; \
        then mv -f ".deps/html_quote.Tpo" ".deps/html_quote.Po"; else rm -f ".deps/html_quote.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT iso3307.o -MD -MP -MF ".deps/iso3307.Tpo" -c -o iso3307.o ../../lib/iso3307.c; \
        then mv -f ".deps/iso3307.Tpo" ".deps/iso3307.Po"; else rm -f ".deps/iso3307.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT md5.o -MD -MP -MF ".deps/md5.Tpo" -c -o md5.o ../../lib/md5.c; \
        then mv -f ".deps/md5.Tpo" ".deps/md5.Po"; else rm -f ".deps/md5.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT radix.o -MD -MP -MF ".deps/radix.Tpo" -c -o radix.o ../../lib/radix.c; \
        then mv -f ".deps/radix.Tpo" ".deps/radix.Po"; else rm -f ".deps/radix.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT rfc1035.o -MD -MP -MF ".deps/rfc1035.Tpo" -c -o rfc1035.o ../../lib/rfc1035.c; \
        then mv -f ".deps/rfc1035.Tpo" ".deps/rfc1035.Po"; else rm -f ".deps/rfc1035.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT rfc1123.o -MD -MP -MF ".deps/rfc1123.Tpo" -c -o rfc1123.o ../../lib/rfc1123.c; \
        then mv -f ".deps/rfc1123.Tpo" ".deps/rfc1123.Po"; else rm -f ".deps/rfc1123.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT rfc1738.o -MD -MP -MF ".deps/rfc1738.Tpo" -c -o rfc1738.o ../../lib/rfc1738.c; \
        then mv -f ".deps/rfc1738.Tpo" ".deps/rfc1738.Po"; else rm -f ".deps/rfc1738.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT rfc2617.o -MD -MP -MF ".deps/rfc2617.Tpo" -c -o rfc2617.o ../../lib/rfc2617.c; \
        then mv -f ".deps/rfc2617.Tpo" ".deps/rfc2617.Po"; else rm -f ".deps/rfc2617.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT rfc3596.o -MD -MP -MF ".deps/rfc3596.Tpo" -c -o rfc3596.o ../../lib/rfc3596.c; \
        then mv -f ".deps/rfc3596.Tpo" ".deps/rfc3596.Po"; else rm -f ".deps/rfc3596.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -MT Splay.o -MD -MP -MF ".deps/Splay.Tpo" -c -o Splay.o ../../lib/Splay.cc; \
        then mv -f ".deps/Splay.Tpo" ".deps/Splay.Po"; else rm -f ".deps/Splay.Tpo"; exit 1; fi
if g++ -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -MT strnstr.o -MD -MP -MF ".deps/strnstr.Tpo" -c -o strnstr.o ../../lib/strnstr.cc; \
        then mv -f ".deps/strnstr.Tpo" ".deps/strnstr.Po"; else rm -f ".deps/strnstr.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT stub_memaccount.o -MD -MP -MF ".deps/stub_memaccount.Tpo" -c -o stub_memaccount.o ../../lib/stub_memaccount.c; \
        then mv -f ".deps/stub_memaccount.Tpo" ".deps/stub_memaccount.Po"; else rm -f ".deps/stub_memaccount.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT util.o -MD -MP -MF ".deps/util.Tpo" -c -o util.o ../../lib/util.c; \
        then mv -f ".deps/util.Tpo" ".deps/util.Po"; else rm -f ".deps/util.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT uudecode.o -MD -MP -MF ".deps/uudecode.Tpo" -c -o uudecode.o ../../lib/uudecode.c; \
        then mv -f ".deps/uudecode.Tpo" ".deps/uudecode.Po"; else rm -f ".deps/uudecode.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT xusleep.o -MD -MP -MF ".deps/xusleep.Tpo" -c -o xusleep.o ../../lib/xusleep.c; \
        then mv -f ".deps/xusleep.Tpo" ".deps/xusleep.Po"; else rm -f ".deps/xusleep.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I../.. -I../../include -I../../src -I../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT ntlmauth.o -MD -MP -MF ".deps/ntlmauth.Tpo" -c -o ntlmauth.o ../../lib/ntlmauth.c; \
        then mv -f ".deps/ntlmauth.Tpo" ".deps/ntlmauth.Po"; else rm -f ".deps/ntlmauth.Tpo"; exit 1; fi
rm -f libntlmauth.a
/usr/bin/ar cru libntlmauth.a ntlmauth.o
ranlib libntlmauth.a
rm -f libmiscutil.a
/usr/bin/ar cru libmiscutil.a MemPool.o MemPoolChunked.o MemPoolMalloc.o base64.o charset.o getfullhostname.o hash.o heap.o html_quote.o iso3307.o md5.o radix.o rfc1035.o rfc1123.o rfc1738.o rfc2617.o rfc3596.o Splay.o strnstr.o stub_memaccount.o util.o uudecode.o xusleep.o
ranlib libmiscutil.a
make[3]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/lib'>
make[2]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/lib'>
Making all in snmplib
make[2]: Entering directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/snmplib'>
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT asn1.o -MD -MP -MF ".deps/asn1.Tpo" -c -o asn1.o ../../snmplib/asn1.c; \
        then mv -f ".deps/asn1.Tpo" ".deps/asn1.Po"; else rm -f ".deps/asn1.Tpo"; exit 1; fi
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT parse.o -MD -MP -MF ".deps/parse.Tpo" -c -o parse.o ../../snmplib/parse.c; \
        then mv -f ".deps/parse.Tpo" ".deps/parse.Po"; else rm -f ".deps/parse.Tpo"; exit 1; fi
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT snmp_vars.o -MD -MP -MF ".deps/snmp_vars.Tpo" -c -o snmp_vars.o ../../snmplib/snmp_vars.c; \
        then mv -f ".deps/snmp_vars.Tpo" ".deps/snmp_vars.Po"; else rm -f ".deps/snmp_vars.Tpo"; exit 1; fi
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT coexistance.o -MD -MP -MF ".deps/coexistance.Tpo" -c -o coexistance.o ../../snmplib/coexistance.c; \
        then mv -f ".deps/coexistance.Tpo" ".deps/coexistance.Po"; else rm -f ".deps/coexistance.Tpo"; exit 1; fi
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT snmp_api.o -MD -MP -MF ".deps/snmp_api.Tpo" -c -o snmp_api.o ../../snmplib/snmp_api.c; \
        then mv -f ".deps/snmp_api.Tpo" ".deps/snmp_api.Po"; else rm -f ".deps/snmp_api.Tpo"; exit 1; fi
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT snmp_error.o -MD -MP -MF ".deps/snmp_error.Tpo" -c -o snmp_error.o ../../snmplib/snmp_error.c; \
        then mv -f ".deps/snmp_error.Tpo" ".deps/snmp_error.Po"; else rm -f ".deps/snmp_error.Tpo"; exit 1; fi
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT mib.o -MD -MP -MF ".deps/mib.Tpo" -c -o mib.o ../../snmplib/mib.c; \
        then mv -f ".deps/mib.Tpo" ".deps/mib.Po"; else rm -f ".deps/mib.Tpo"; exit 1; fi
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT snmp_api_error.o -MD -MP -MF ".deps/snmp_api_error.Tpo" -c -o snmp_api_error.o ../../snmplib/snmp_api_error.c; \
        then mv -f ".deps/snmp_api_error.Tpo" ".deps/snmp_api_error.Po"; else rm -f ".deps/snmp_api_error.Tpo"; exit 1; fi
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT snmp_msg.o -MD -MP -MF ".deps/snmp_msg.Tpo" -c -o snmp_msg.o ../../snmplib/snmp_msg.c; \
        then mv -f ".deps/snmp_msg.Tpo" ".deps/snmp_msg.Po"; else rm -f ".deps/snmp_msg.Tpo"; exit 1; fi
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT snmp_pdu.o -MD -MP -MF ".deps/snmp_pdu.Tpo" -c -o snmp_pdu.o ../../snmplib/snmp_pdu.c; \
        then mv -f ".deps/snmp_pdu.Tpo" ".deps/snmp_pdu.Po"; else rm -f ".deps/snmp_pdu.Tpo"; exit 1; fi
if gcc -DSQUID_SNMP=1 -I../.. -I../include -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Werror -D_REENTRANT -Wall -g -O2 -MT snmplib_debug.o -MD -MP -MF ".deps/snmplib_debug.Tpo" -c -o snmplib_debug.o ../../snmplib/snmplib_debug.c; \
        then mv -f ".deps/snmplib_debug.Tpo" ".deps/snmplib_debug.Po"; else rm -f ".deps/snmplib_debug.Tpo"; exit 1; fi
rm -f libsnmp.a
/usr/bin/ar cru libsnmp.a asn1.o parse.o snmp_vars.o coexistance.o snmp_api.o snmp_error.o mib.o snmp_api_error.o snmp_msg.o snmp_pdu.o snmplib_debug.o
ranlib libsnmp.a
make[2]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/snmplib'>
Making all in libltdl
make[2]: Entering directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/libltdl'>
make all-am
make[3]: Entering directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/libltdl'>
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT dlopen.lo -MD -MP -MF .deps/dlopen.Tpo -c -o dlopen.lo `test -f 'loaders/dlopen.c' || echo '../../libltdl/'`loaders/dlopen.c
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-preopen.lo -MD -MP -MF .deps/libltdlc_la-preopen.Tpo -c -o libltdlc_la-preopen.lo `test -f 'loaders/preopen.c' || echo '../../libltdl/'`loaders/preopen.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT dlopen.lo -MD -MP -MF .deps/dlopen.Tpo -c ../../libltdl/loaders/dlopen.c -fPIC -DPIC -o .libs/dlopen.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT dlopen.lo -MD -MP -MF .deps/dlopen.Tpo -c ../../libltdl/loaders/dlopen.c -o dlopen.o >/dev/null 2>&1
mv -f .deps/dlopen.Tpo .deps/dlopen.Plo
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-lt__alloc.lo -MD -MP -MF .deps/libltdlc_la-lt__alloc.Tpo -c -o libltdlc_la-lt__alloc.lo `test -f 'lt__alloc.c' || echo '../../libltdl/'`lt__alloc.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-preopen.lo -MD -MP -MF .deps/libltdlc_la-preopen.Tpo -c ../../libltdl/loaders/preopen.c -fPIC -DPIC -o .libs/libltdlc_la-preopen.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-lt__alloc.lo -MD -MP -MF .deps/libltdlc_la-lt__alloc.Tpo -c ../../libltdl/lt__alloc.c -fPIC -DPIC -o .libs/libltdlc_la-lt__alloc.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-preopen.lo -MD -MP -MF .deps/libltdlc_la-preopen.Tpo -c ../../libltdl/loaders/preopen.c -o libltdlc_la-preopen.o >/dev/null 2>&1
mv -f .deps/libltdlc_la-preopen.Tpo .deps/libltdlc_la-preopen.Plo
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-lt_dlloader.lo -MD -MP -MF .deps/libltdlc_la-lt_dlloader.Tpo -c -o libltdlc_la-lt_dlloader.lo `test -f 'lt_dlloader.c' || echo '../../libltdl/'`lt_dlloader.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-lt_dlloader.lo -MD -MP -MF .deps/libltdlc_la-lt_dlloader.Tpo -c ../../libltdl/lt_dlloader.c -fPIC -DPIC -o .libs/libltdlc_la-lt_dlloader.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-lt_dlloader.lo -MD -MP -MF .deps/libltdlc_la-lt_dlloader.Tpo -c ../../libltdl/lt_dlloader.c -o libltdlc_la-lt_dlloader.o >/dev/null 2>&1
mv -f .deps/libltdlc_la-lt_dlloader.Tpo .deps/libltdlc_la-lt_dlloader.Plo
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-lt_error.lo -MD -MP -MF .deps/libltdlc_la-lt_error.Tpo -c -o libltdlc_la-lt_error.lo `test -f 'lt_error.c' || echo '../../libltdl/'`lt_error.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-lt_error.lo -MD -MP -MF .deps/libltdlc_la-lt_error.Tpo -c ../../libltdl/lt_error.c -fPIC -DPIC -o .libs/libltdlc_la-lt_error.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-lt_error.lo -MD -MP -MF .deps/libltdlc_la-lt_error.Tpo -c ../../libltdl/lt_error.c -o libltdlc_la-lt_error.o >/dev/null 2>&1
mv -f .deps/libltdlc_la-lt_error.Tpo .deps/libltdlc_la-lt_error.Plo
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-ltdl.lo -MD -MP -MF .deps/libltdlc_la-ltdl.Tpo -c -o libltdlc_la-ltdl.lo `test -f 'ltdl.c' || echo '../../libltdl/'`ltdl.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-ltdl.lo -MD -MP -MF .deps/libltdlc_la-ltdl.Tpo -c ../../libltdl/ltdl.c -fPIC -DPIC -o .libs/libltdlc_la-ltdl.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-lt__alloc.lo -MD -MP -MF .deps/libltdlc_la-lt__alloc.Tpo -c ../../libltdl/lt__alloc.c -o libltdlc_la-lt__alloc.o >/dev/null 2>&1
mv -f .deps/libltdlc_la-lt__alloc.Tpo .deps/libltdlc_la-lt__alloc.Plo
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-slist.lo -MD -MP -MF .deps/libltdlc_la-slist.Tpo -c -o libltdlc_la-slist.lo `test -f 'slist.c' || echo '../../libltdl/'`slist.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-slist.lo -MD -MP -MF .deps/libltdlc_la-slist.Tpo -c ../../libltdl/slist.c -fPIC -DPIC -o .libs/libltdlc_la-slist.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-slist.lo -MD -MP -MF .deps/libltdlc_la-slist.Tpo -c ../../libltdl/slist.c -o libltdlc_la-slist.o >/dev/null 2>&1
mv -f .deps/libltdlc_la-slist.Tpo .deps/libltdlc_la-slist.Plo
/bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT lt__strl.lo -MD -MP -MF .deps/lt__strl.Tpo -c -o lt__strl.lo ../../libltdl/lt__strl.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT lt__strl.lo -MD -MP -MF .deps/lt__strl.Tpo -c ../../libltdl/lt__strl.c -fPIC -DPIC -o .libs/lt__strl.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT lt__strl.lo -MD -MP -MF .deps/lt__strl.Tpo -c ../../libltdl/lt__strl.c -o lt__strl.o >/dev/null 2>&1
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../libltdl -DLTDLOPEN=libltdlc "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I../../libltdl -Ilibltdl -I../../libltdl/libltdl -I../../libltdl/libltdl -g -O2 -MT libltdlc_la-ltdl.lo -MD -MP -MF .deps/libltdlc_la-ltdl.Tpo -c ../../libltdl/ltdl.c -o libltdlc_la-ltdl.o >/dev/null 2>&1
mv -f .deps/lt__strl.Tpo .deps/lt__strl.Plo
/bin/sh ./libtool --tag=CC --mode=link gcc -g -O2 -module -avoid-version -o dlopen.la dlopen.lo -ldl -ldl
mv -f .deps/libltdlc_la-ltdl.Tpo .deps/libltdlc_la-ltdl.Plo
libtool: link: ar cru .libs/dlopen.a .libs/dlopen.o
libtool: link: ranlib .libs/dlopen.a
libtool: link: ( cd ".libs" && rm -f "dlopen.la" && ln -s "../dlopen.la" "dlopen.la" )
/bin/sh ./libtool --tag=CC --mode=link gcc -g -O2 -no-undefined -dlpreopen dlopen.la -o libltdlc.la libltdlc_la-preopen.lo libltdlc_la-lt__alloc.lo libltdlc_la-lt_dlloader.lo libltdlc_la-lt_error.lo libltdlc_la-ltdl.lo libltdlc_la-slist.lo lt__strl.lo -ldl
libtool: link: rm -f .libs/libltdlc.nm .libs/libltdlc.nmS .libs/libltdlc.nmT
libtool: link: (cd .libs && gcc -g -O2 -c -fno-builtin -fPIC -DPIC "libltdlcS.c")
libtool: link: rm -f ".libs/libltdlcS.c" ".libs/libltdlc.nm" ".libs/libltdlc.nmS" ".libs/libltdlc.nmT"
libtool: link: (cd .libs/libltdlc.lax/dlopen.a && ar x "<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/libltdl/./.libs/dlopen.a")>
libtool: link: ar cru .libs/libltdlc.a .libs/libltdlc_la-preopen.o .libs/libltdlc_la-lt__alloc.o .libs/libltdlc_la-lt_dlloader.o .libs/libltdlc_la-lt_error.o .libs/libltdlc_la-ltdl.o .libs/libltdlc_la-slist.o .libs/lt__strl.o .libs/libltdlcS.o .libs/libltdlc.lax/dlopen.a/dlopen.o
libtool: link: ranlib .libs/libltdlc.a
libtool: link: rm -fr .libs/libltdlc.lax
libtool: link: ( cd ".libs" && rm -f "libltdlc.la" && ln -s "../libltdlc.la" "libltdlc.la" )
make[3]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/libltdl'>
make[2]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/libltdl'>
Making all in scripts
make[2]: Entering directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/scripts'>
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/scripts'>
Making all in src
make[2]: Entering directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/src'>
gawk -f ../../src/cf_gen_defines <../../src/cf.data.pre >cf_gen_defines.cci || (/bin/rm -f -f cf_gen_defines.cci && exit 1)
sed \
        -e "s%[@]DEFAULT_HTTP_PORT[@]%3128%g" \
        -e "s%[@]DEFAULT_ICP_PORT[@]%3130%g" \
        -e "s%[@]DEFAULT_CACHE_EFFECTIVE_USER[@]%nobody%g" \
        -e "s%[@]DEFAULT_MIME_TABLE[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/etc/mime.conf%g"> \
        -e "s%[@]DEFAULT_DNSSERVER[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/libexec/`echo> dnsserver | sed 's,x,x,;s/$//'`%g" \
        -e "s%[@]DEFAULT_UNLINKD[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/libexec/`echo> unlinkd | sed 's,x,x,;s/$//'`%g" \
        -e "s%[@]DEFAULT_PINGER[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/libexec/`echo> pinger | sed 's,x,x,;s/$//'`%g" \
        -e "s%[@]DEFAULT_DISKD[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/libexec/`echo> diskd | sed 's,x,x,;s/$//'`%g" \
        -e "s%[@]DEFAULT_CACHE_LOG[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/var/logs/cache.log%g"> \
        -e "s%[@]DEFAULT_ACCESS_LOG[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/var/logs/access.log%g"> \
        -e "s%[@]DEFAULT_STORE_LOG[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/var/logs/store.log%g"> \
        -e "s%[@]DEFAULT_PID_FILE[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/var/run/squid.pid%g"> \
        -e "s%[@]DEFAULT_NETDB_FILE[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/var/logs/netdb.state%g"> \
        -e "s%[@]DEFAULT_SWAP_DIR[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/var/cache%g"> \
        -e "s%[@]DEFAULT_ICON_DIR[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/share/icons%g"> \
        -e "s%[@]DEFAULT_CONFIG_DIR[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/etc%g"> \
        -e "s%[@]DEFAULT_PREFIX[@]%<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst%g"> \
        -e "s%[@]DEFAULT_HOSTS[@]%/etc/hosts%g" \
        -e "s%[@]SQUID[@]%SQUID\ 3.1.8-BZR%g" \
        < ../../src/cf.data.pre >cf.data
gawk -f ../../src/mk-globals-c.awk < ../../src/globals.h > globals.cc || (/bin/rm -f -f globals.cc && exit 1)
gawk -f ../../src/mk-string-arrays.awk < ../../src/enums.h > string_arrays.c || (/bin/rm -f -f string_arrays.c && exit 1)
/bin/sh ../../src/repl_modules.sh lru > repl_modules.cc
depbase=`echo cf_gen.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; \
        if g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=\"<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/etc/squid.conf\"> -DDEFAULT_SQUID_DATA_DIR=\"<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/share\"> -DDEFAULT_SQUID_CONFIG_DIR=\"<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_inst/etc\"> -I../.. -I../../include -I../../src -I../include -I../src -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -MT cf_gen.o -MD -MP -MF "$depbase.Tpo" -c -o cf_gen.o ../../src/cf_gen.cc; \
        then mv -f "$depbase.Tpo" "$depbase.Po"; else rm -f "$depbase.Tpo"; exit 1; fi
/bin/sh ../libtool --tag=CXX --mode=link g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -g -o cf_gen cf_gen.o ../compat/libcompat.la -L../lib -lmiscutil -lm -lnsl -ldl -ldl
libtool: link: g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -g -o cf_gen cf_gen.o ../compat/.libs/libcompat.a -L<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/lib> -lmiscutil -lm -lnsl -ldl
./cf_gen cf.data ../../src/cf.data.depend
make all-recursive
make[3]: Entering directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/src'>
Making all in base
make[4]: Entering directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/src/base'>
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -MT AsyncCall.lo -MD -MP -MF ".deps/AsyncCall.Tpo" -c -o AsyncCall.lo ../../../src/base/AsyncCall.cc; \
        then mv -f ".deps/AsyncCall.Tpo" ".deps/AsyncCall.Plo"; else rm -f ".deps/AsyncCall.Tpo"; exit 1; fi
if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -MT AsyncJob.lo -MD -MP -MF ".deps/AsyncJob.Tpo" -c -o AsyncJob.lo ../../../src/base/AsyncJob.cc; \
        then mv -f ".deps/AsyncJob.Tpo" ".deps/AsyncJob.Plo"; else rm -f ".deps/AsyncJob.Tpo"; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -MT AsyncCall.lo -MD -MP -MF .deps/AsyncCall.Tpo -c ../../../src/base/AsyncCall.cc -fPIC -DPIC -o .libs/AsyncCall.o
libtool: compile: g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../src -I../../include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -D_REENTRANT -g -O2 -MT AsyncJob.lo -MD -MP -MF .deps/AsyncJob.Tpo -c ../../../src/base/AsyncJob.cc -fPIC -DPIC -o .libs/AsyncJob.o
In file included from ../../../src/squid.h:318,
                 from ../../../src/base/AsyncCall.cc:5:
../../../src/structs.h:1015: error: stray '#' in program
In file included from ../../../src/squid.h:318,
                 from ../../../src/base/AsyncCall.cc:5:
../../../src/structs.h:1335:2: error: #endif without #if
In file included from ../../../src/globals.h:45,
                 from ../../../src/squid.h:320,
                 from ../../../src/base/AsyncCall.cc:5:
../../../src/structs.h:1335:2: error: #endif without #if
../../../src/structs.h: In constructor 'request_flags::request_flags()':
../../../src/structs.h:1015: error: expected `(' before numeric constant
../../../src/structs.h: At global scope:
../../../src/structs.h:1019: error: expected constructor, destructor, or type conversion before '=' token
../../../src/structs.h:1021: error: expected declaration before '}' token
make[4]: *** [AsyncCall.lo] Error 1
make[4]: *** Waiting for unfinished jobs....
In file included from ../../../src/squid.h:318,
                 from ../../../src/base/AsyncJob.cc:5:
../../../src/structs.h:1015: error: stray '#' in program
In file included from ../../../src/squid.h:318,
                 from ../../../src/base/AsyncJob.cc:5:
../../../src/structs.h:1335:2: error: #endif without #if
In file included from ../../../src/globals.h:45,
                 from ../../../src/squid.h:320,
                 from ../../../src/base/AsyncJob.cc:5:
../../../src/structs.h:1335:2: error: #endif without #if
../../../src/structs.h: In constructor 'request_flags::request_flags()':
../../../src/structs.h:1015: error: expected `(' before numeric constant
../../../src/structs.h: At global scope:
../../../src/structs.h:1019: error: expected constructor, destructor, or type conversion before '=' token
../../../src/structs.h:1021: error: expected declaration before '}' token
make[4]: *** [AsyncJob.lo] Error 1
make[4]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/src/base'>
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/src'>
make[2]: *** [all] Error 2
make[2]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build/src'>
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `<http://build.squid-cache.org/job/3.1-amd64-CentOS.5/ws/btlayer-00-default/squid-3.1.8-BZR/_build'>
make: *** [distcheck] Error 2
buildtest.sh result is 2
BUILD: .././test-suite/buildtests/layer-00-default.opts
../../../src/structs.h:1015: error: stray '#' in program
../../../src/structs.h:1335:2: error: #endif without #if
../../../src/structs.h:1335:2: error: #endif without #if
../../../src/structs.h:1015: error: expected `(' before numeric constant
../../../src/structs.h:1019: error: expected constructor, destructor, or type conversion before '=' token
../../../src/structs.h:1021: error: expected declaration before '}' token
make[4]: *** [AsyncCall.lo] Error 1
../../../src/structs.h:1015: error: stray '#' in program
../../../src/structs.h:1335:2: error: #endif without #if
../../../src/structs.h:1335:2: error: #endif without #if
../../../src/structs.h:1015: error: expected `(' before numeric constant
../../../src/structs.h:1019: error: expected constructor, destructor, or type conversion before '=' token
../../../src/structs.h:1021: error: expected declaration before '}' token
make[4]: *** [AsyncJob.lo] 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.
Received on Sat Oct 23 2010 - 14:19:14 MDT

This archive was generated by hypermail 2.2.0 : Sat Oct 23 2010 - 12:00:06 MDT