Build failed in Jenkins: 3.HEAD-amd64-FreeBSD-9.0-clang #6

From: <noc_at_squid-cache.org>
Date: Sun, 23 Sep 2012 02:42:25 +0200 (CEST)

See <http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-9.0-clang/6/changes>

Changes:

[Francesco Chemolli] Make IPC base path absolute in testRock

[Amos Jeffries] Release Notes: document cache_store_log changes in 3.2

Store log uses logFile*() infrastructure and was caught in the access.log
change upgrades (in a good way). But was not documented.

[Amos Jeffries] Regression fix: Handle dstdomain duplicates and overlapping names better

Since 3.2 changes to dstdomain overlap detection teh case of duplicate
wildcards has become a fatal error needlessly.

This silently ignores all exact duplicates, even if they are wildcards.

Also, adjust the message display to always display the longer of the
domains first. Since we are dealing with sub-domains it is the most
reliable indicator of which should be removed to safely fix the detected
issue.

[Amos Jeffries] Bug 3648: Polish String class files

Fix to correct function parameter const correctness.

Also polishes whitespace to match Squid coding guidelines.

[Amos Jeffries] Bug 3647: parsing hier_code acl fails

[Automatic source maintenance] SourceFormat Enforcement

[Francesco Chemolli] Completed protos.h split and code refactoring

Complete the task of splitting protos.h into more specific files
Remove inclusion of protos.h from most files
Clean CVS and arch file-tags up
Rework some module initialization code so that it is the callee's task and not the callers' to do feature-enabling
Added ssl-crtd option to the maximus build test
Changed many functions' linkage type from C to C++

[Alex Rousskov] Do not reuse persistent connections for PUTs to avoid ERR_ZERO_SIZE_OBJECT.

A compliant proxy may retry PUTs, but Squid lacks the [rather complicated]
code required to protect the PUT request body from being nibbled during the
first try or [also tricky] code to send 100-continue expectation requiredto
delay body sending. Thus, Squid cannot safely retry some PUTs today, and
FwdState::checkRetriable() must return false for all PUTs, to avoid
bogus ERR_ZERO_SIZE_OBJECT errors (especially for clients that did not
reuse a pconn and, hence, may not be ready to handle/retry an error response).

In theory, requests with safe or idempotent methods other than PUT might have
bodies so we apply the same logic to them as well.

This reopens Squid bug #3398, undoing trunk r11859 commit which attempted
to close that bug.

[Alex Rousskov] Do not chunk responses carrying a Content-Range header.

When Squid forwards a response with a Content-Range header,
ClientSocketContext::socketState() detects the end of the response range(s)
and returns STREAM_*COMPLETE to ClientSocketContext::writeComplete().
The latter thinks that the writing of the response to the client must be
over and calls keepaliveNextRequest() instead of writing the last-chunk
(if any). If the to-client response was chunked, the client gets stuck
waiting for that missing last-chunk.

The multipart Range request case was already excluded from chunking (or it
would probably suffer from the same problem). With this change, no
Content-Range responses will be chunked.

N.B. Some servers send Content-Range responses to basic GET requests
without a Range header, so the problem affects more than just Range requests.

TODO: A proper fix would be to rewrite ClientSocketContext::writeComplete()
and other code so that it does not mix internal ClientStream completion with
[possibly chunk-encoded] writing completion. This should probably be done
along with fixing ClientSocketContext::socketState() and other state-checking
code to ignore to-client persistence (flags.proxy_keepalive), which is not
related to the internal ClientStream state.

[Christos Tsantilas] Bug fix: TLS/SSL Options does not apply to the dynamically generated certificates

The TLS/SSL options configured with http_port configuration parameter does not
used to generate SSL_CTX context objects used to establish SSL connections.
This is means that certificate based authentication, or SSL version selection
and other SSL/TLS http_port options does not work for ssl-bumped connection.
This patch fixes this problem.

This is a Measurement Factory project

[Amos Jeffries] Release Notes: document ECN vs TOS issue clearer for 3.1

[Automatic source maintenance] SourceFormat Enforcement

[Amos Jeffries] Bug 3615: configure check for default max number of FDs is broken

[Amos Jeffries] Fix maximum_single_addr_tries upgrade

[Amos Jeffries] Fix documentatino on loop detection

[Amos Jeffries] Bug 3622: peerClearRRStart scheduling multiple events

[Amos Jeffries] Bug 3626: Forwarding loops on intercepted traffic

Changes to interception handling in 3.2 series (namely the preference
for using ORIGINAL_DST) have increased the chances that misconfigured
network systems involving Squid will hit forwarding loops.

Two instances are currently known:
* passing forward-proxy traffic to a interception port.
* NAT performed on a separate box.

This enacts an old TODO by removing the loop detection bypass for
intercepted traffic and accelerated traffic. Now we always check for
loops regardless of how the request was received.

NOTE: accel mode was only included due to the TODO.
If problems are found there it can be re-instated.

[Amos Jeffries] Make CpuAffinitySet::applied() method non-const.

According to CPU_SET(3) and, apparently, on some systems (e.g.,
OpenSuSE 10.3) CPU_COUNT macro expects a non-const argument. The
patch fixes build error on these systems.

[Christos Tsantilas] Retrieve client connection information for ACL checks from the related HttpRequest object

This patch enable SSL client certificate ACL checks (user_cert and ca_cert)
in all cases the client connection information can retrieved from the related
HttpRequest object, eg when making peering decisions (peer_cache_access ACL).

Discussed under the "Supply client connection and IDENT information to
peer_cache_access ACL check" thread on squid-dev.

This is a Measurement Factory project

[Amos Jeffries] Fix 'error: continue statement not within a loop'

[Amos Jeffries] Bug 3609: several RADIUS helper improvements

[Amos Jeffries] Regression: login=PASS send no credentials when none available.

login=PASS should act like PASSTHRU, sending no credentials header, when
no client supplied OR external ACL credentials are available.
3.2 has been found wrongly adding the username "PASS" in this case.

[Automatic source maintenance] SourceFormat Enforcement

[Francesco Chemolli] protos.h refactoring, part one.

Refactor many function prototypes from protos.h to more specific header files.
Change linkage for moved prototypes to c++.

[Amos Jeffries] Cleanup: duplicate include of squid.h

[Automatic source maintenance] SourceFormat Enforcement

[Francesco Chemolli] Enable source-formatting tools to collapse multiple whitelines in the source to one.

[Automatic source maintenance] SourceFormat Enforcement

[Francesco Chemolli] Bug 3613: relax standard-compliance strctness on clang to enable build

When clang is invoked with the -std=c++0x option, it won't make available some system functions
defined in c99. For some reason configure fails to detect this, and so the built-in implementation is
not invoked. This change prevents enabling the -std=c++0x option for clang.

[Francesco Chemolli] Prep work for automatic sorting of include directives.

Automatic sorting of include files reveals some indirect inclusions, which would break the build.
scripts/sort-includes.pl is the tool to do the automatic header include order sorting.
The other changes in this set fix the issues which that be introduced by running the sorting.

[Amos Jeffries] Bug 3605: memory leak in Negotiate authentication

[Francesco Chemolli] Added missing includes in adaptation/esi

[Francesco Chemolli] Added missing include in ssl helper

[Amos Jeffries] Fix ip/Intercept header ordering and documentation

[Francesco Chemolli] netfilter_ipv4.h requires including limits.h first. Added.

[Francesco Chemolli] Added missing include in mem_hdr_test

[Francesco Chemolli] Add missing includes

[Francesco Chemolli] Make mk-globals-c.awk more permissive on the input it accepts

[Amos Jeffries] Release notes: fix wrong link to Translations

[Automatic source maintenance] SourceFormat Enforcement

[Amos Jeffries] Prep for 3.2.1

[Amos Jeffries] Docs: update configure libcap messages to say 2.09+ required

[Amos Jeffries] Remove --enable-ntlm-fail-open

This feature has been half missing for quite some time (10 years).
The SMB helper sends the LD code back to Squid when the directive is
compiled in, but there is no Squid code handling such responses, back as far
as squid-2.

[Francesco Chemolli] Removed squid-old.h

[Amos Jeffries] Bug 3610: peername_regex ACL

[Automatic source maintenance] SourceFormat Enforcement

[Amos Jeffries] Bug 3605: memory leak in peer selection

------------------------------------------
[...truncated 4588 lines...]
rm -f liblru.a
/usr/bin/ar cru liblru.a lru/store_repl_lru.o
ranlib liblru.a
Making all in auth
Making all in basic
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c -o Scheme.lo ../../../../src/auth/basic/Scheme.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c ../../../../src/auth/basic/Scheme.cc -fPIC -DPIC -o .libs/Scheme.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c ../../../../src/auth/basic/Scheme.cc -o Scheme.o >/dev/null 2>&1
mv -f .deps/Scheme.Tpo .deps/Scheme.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_basic.lo -MD -MP -MF .deps/auth_basic.Tpo -c -o auth_basic.lo ../../../../src/auth/basic/auth_basic.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_basic.lo -MD -MP -MF .deps/auth_basic.Tpo -c ../../../../src/auth/basic/auth_basic.cc -fPIC -DPIC -o .libs/auth_basic.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_basic.lo -MD -MP -MF .deps/auth_basic.Tpo -c ../../../../src/auth/basic/auth_basic.cc -o auth_basic.o >/dev/null 2>&1
mv -f .deps/auth_basic.Tpo .deps/auth_basic.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c -o User.lo ../../../../src/auth/basic/User.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c ../../../../src/auth/basic/User.cc -fPIC -DPIC -o .libs/User.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c ../../../../src/auth/basic/User.cc -o User.o >/dev/null 2>&1
mv -f .deps/User.Tpo .deps/User.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c -o UserRequest.lo ../../../../src/auth/basic/UserRequest.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c ../../../../src/auth/basic/UserRequest.cc -fPIC -DPIC -o .libs/UserRequest.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c ../../../../src/auth/basic/UserRequest.cc -o UserRequest.o >/dev/null 2>&1
mv -f .deps/UserRequest.Tpo .deps/UserRequest.Plo
/bin/sh ../../../libtool --tag=CXX --mode=link clang++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o libbasic.la Scheme.lo auth_basic.lo User.lo UserRequest.lo
libtool: link: /usr/bin/ar cru .libs/libbasic.a .libs/Scheme.o .libs/auth_basic.o .libs/User.o .libs/UserRequest.o
libtool: link: ranlib .libs/libbasic.a
libtool: link: ( cd ".libs" && rm -f "libbasic.la" && ln -s "../libbasic.la" "libbasic.la" )
Making all in ntlm
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c -o Scheme.lo ../../../../src/auth/ntlm/Scheme.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c ../../../../src/auth/ntlm/Scheme.cc -fPIC -DPIC -o .libs/Scheme.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c ../../../../src/auth/ntlm/Scheme.cc -o Scheme.o >/dev/null 2>&1
mv -f .deps/Scheme.Tpo .deps/Scheme.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_ntlm.lo -MD -MP -MF .deps/auth_ntlm.Tpo -c -o auth_ntlm.lo ../../../../src/auth/ntlm/auth_ntlm.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_ntlm.lo -MD -MP -MF .deps/auth_ntlm.Tpo -c ../../../../src/auth/ntlm/auth_ntlm.cc -fPIC -DPIC -o .libs/auth_ntlm.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_ntlm.lo -MD -MP -MF .deps/auth_ntlm.Tpo -c ../../../../src/auth/ntlm/auth_ntlm.cc -o auth_ntlm.o >/dev/null 2>&1
mv -f .deps/auth_ntlm.Tpo .deps/auth_ntlm.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c -o User.lo ../../../../src/auth/ntlm/User.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c ../../../../src/auth/ntlm/User.cc -fPIC -DPIC -o .libs/User.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c ../../../../src/auth/ntlm/User.cc -o User.o >/dev/null 2>&1
mv -f .deps/User.Tpo .deps/User.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c -o UserRequest.lo ../../../../src/auth/ntlm/UserRequest.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c ../../../../src/auth/ntlm/UserRequest.cc -fPIC -DPIC -o .libs/UserRequest.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c ../../../../src/auth/ntlm/UserRequest.cc -o UserRequest.o >/dev/null 2>&1
mv -f .deps/UserRequest.Tpo .deps/UserRequest.Plo
/bin/sh ../../../libtool --tag=CXX --mode=link clang++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o libntlm.la Scheme.lo auth_ntlm.lo User.lo UserRequest.lo
libtool: link: /usr/bin/ar cru .libs/libntlm.a .libs/Scheme.o .libs/auth_ntlm.o .libs/User.o .libs/UserRequest.o
libtool: link: ranlib .libs/libntlm.a
libtool: link: ( cd ".libs" && rm -f "libntlm.la" && ln -s "../libntlm.la" "libntlm.la" )
Making all in negotiate
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c -o Scheme.lo ../../../../src/auth/negotiate/Scheme.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c ../../../../src/auth/negotiate/Scheme.cc -fPIC -DPIC -o .libs/Scheme.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c ../../../../src/auth/negotiate/Scheme.cc -o Scheme.o >/dev/null 2>&1
mv -f .deps/Scheme.Tpo .deps/Scheme.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_negotiate.lo -MD -MP -MF .deps/auth_negotiate.Tpo -c -o auth_negotiate.lo ../../../../src/auth/negotiate/auth_negotiate.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_negotiate.lo -MD -MP -MF .deps/auth_negotiate.Tpo -c ../../../../src/auth/negotiate/auth_negotiate.cc -fPIC -DPIC -o .libs/auth_negotiate.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_negotiate.lo -MD -MP -MF .deps/auth_negotiate.Tpo -c ../../../../src/auth/negotiate/auth_negotiate.cc -o auth_negotiate.o >/dev/null 2>&1
mv -f .deps/auth_negotiate.Tpo .deps/auth_negotiate.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c -o User.lo ../../../../src/auth/negotiate/User.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c ../../../../src/auth/negotiate/User.cc -fPIC -DPIC -o .libs/User.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c ../../../../src/auth/negotiate/User.cc -o User.o >/dev/null 2>&1
mv -f .deps/User.Tpo .deps/User.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c -o UserRequest.lo ../../../../src/auth/negotiate/UserRequest.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c ../../../../src/auth/negotiate/UserRequest.cc -fPIC -DPIC -o .libs/UserRequest.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c ../../../../src/auth/negotiate/UserRequest.cc -o UserRequest.o >/dev/null 2>&1
mv -f .deps/UserRequest.Tpo .deps/UserRequest.Plo
/bin/sh ../../../libtool --tag=CXX --mode=link clang++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o libnegotiate.la Scheme.lo auth_negotiate.lo User.lo UserRequest.lo
libtool: link: /usr/bin/ar cru .libs/libnegotiate.a .libs/Scheme.o .libs/auth_negotiate.o .libs/User.o .libs/UserRequest.o
libtool: link: ranlib .libs/libnegotiate.a
libtool: link: ( cd ".libs" && rm -f "libnegotiate.la" && ln -s "../libnegotiate.la" "libnegotiate.la" )
Making all in digest
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c -o Scheme.lo ../../../../src/auth/digest/Scheme.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c ../../../../src/auth/digest/Scheme.cc -fPIC -DPIC -o .libs/Scheme.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c ../../../../src/auth/digest/Scheme.cc -o Scheme.o >/dev/null 2>&1
mv -f .deps/Scheme.Tpo .deps/Scheme.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_digest.lo -MD -MP -MF .deps/auth_digest.Tpo -c -o auth_digest.lo ../../../../src/auth/digest/auth_digest.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_digest.lo -MD -MP -MF .deps/auth_digest.Tpo -c ../../../../src/auth/digest/auth_digest.cc -fPIC -DPIC -o .libs/auth_digest.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT auth_digest.lo -MD -MP -MF .deps/auth_digest.Tpo -c ../../../../src/auth/digest/auth_digest.cc -o auth_digest.o >/dev/null 2>&1
mv -f .deps/auth_digest.Tpo .deps/auth_digest.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c -o User.lo ../../../../src/auth/digest/User.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c ../../../../src/auth/digest/User.cc -fPIC -DPIC -o .libs/User.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c ../../../../src/auth/digest/User.cc -o User.o >/dev/null 2>&1
mv -f .deps/User.Tpo .deps/User.Plo
/bin/sh ../../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c -o UserRequest.lo ../../../../src/auth/digest/UserRequest.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c ../../../../src/auth/digest/UserRequest.cc -fPIC -DPIC -o .libs/UserRequest.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c ../../../../src/auth/digest/UserRequest.cc -o UserRequest.o >/dev/null 2>&1
mv -f .deps/UserRequest.Tpo .deps/UserRequest.Plo
/bin/sh ../../../libtool --tag=CXX --mode=link clang++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o libdigest.la Scheme.lo auth_digest.lo User.lo UserRequest.lo
libtool: link: /usr/bin/ar cru .libs/libdigest.a .libs/Scheme.o .libs/auth_digest.o .libs/User.o .libs/UserRequest.o
libtool: link: ranlib .libs/libdigest.a
libtool: link: ( cd ".libs" && rm -f "libdigest.la" && ln -s "../libdigest.la" "libdigest.la" )
nawk -f ../../../src/mk-string-arrays.awk < ../../../src/auth/Type.h > Type.cc || (rm -f Type.cc ; exit 1)
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Type.lo -MD -MP -MF .deps/Type.Tpo -c -o Type.lo Type.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Type.lo -MD -MP -MF .deps/Type.Tpo -c Type.cc -fPIC -DPIC -o .libs/Type.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Type.lo -MD -MP -MF .deps/Type.Tpo -c Type.cc -o Type.o >/dev/null 2>&1
mv -f .deps/Type.Tpo .deps/Type.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Config.lo -MD -MP -MF .deps/Config.Tpo -c -o Config.lo ../../../src/auth/Config.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Config.lo -MD -MP -MF .deps/Config.Tpo -c ../../../src/auth/Config.cc -fPIC -DPIC -o .libs/Config.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Config.lo -MD -MP -MF .deps/Config.Tpo -c ../../../src/auth/Config.cc -o Config.o >/dev/null 2>&1
mv -f .deps/Config.Tpo .deps/Config.Plo
nawk -f ../../../src/mk-string-arrays.awk < ../../../src/auth/CredentialState.h > CredentialState.cc || (rm -f CredentialState.cc ; exit 1)
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT CredentialState.lo -MD -MP -MF .deps/CredentialState.Tpo -c -o CredentialState.lo CredentialState.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT CredentialState.lo -MD -MP -MF .deps/CredentialState.Tpo -c CredentialState.cc -fPIC -DPIC -o .libs/CredentialState.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT CredentialState.lo -MD -MP -MF .deps/CredentialState.Tpo -c CredentialState.cc -o CredentialState.o >/dev/null 2>&1
mv -f .deps/CredentialState.Tpo .deps/CredentialState.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Gadgets.lo -MD -MP -MF .deps/Gadgets.Tpo -c -o Gadgets.lo ../../../src/auth/Gadgets.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Gadgets.lo -MD -MP -MF .deps/Gadgets.Tpo -c ../../../src/auth/Gadgets.cc -fPIC -DPIC -o .libs/Gadgets.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Gadgets.lo -MD -MP -MF .deps/Gadgets.Tpo -c ../../../src/auth/Gadgets.cc -o Gadgets.o >/dev/null 2>&1
mv -f .deps/Gadgets.Tpo .deps/Gadgets.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c -o Scheme.lo ../../../src/auth/Scheme.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c ../../../src/auth/Scheme.cc -fPIC -DPIC -o .libs/Scheme.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Scheme.lo -MD -MP -MF .deps/Scheme.Tpo -c ../../../src/auth/Scheme.cc -o Scheme.o >/dev/null 2>&1
mv -f .deps/Scheme.Tpo .deps/Scheme.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT State.lo -MD -MP -MF .deps/State.Tpo -c -o State.lo ../../../src/auth/State.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT State.lo -MD -MP -MF .deps/State.Tpo -c ../../../src/auth/State.cc -fPIC -DPIC -o .libs/State.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT State.lo -MD -MP -MF .deps/State.Tpo -c ../../../src/auth/State.cc -o State.o >/dev/null 2>&1
mv -f .deps/State.Tpo .deps/State.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c -o User.lo ../../../src/auth/User.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c ../../../src/auth/User.cc -fPIC -DPIC -o .libs/User.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT User.lo -MD -MP -MF .deps/User.Tpo -c ../../../src/auth/User.cc -o User.o >/dev/null 2>&1
mv -f .deps/User.Tpo .deps/User.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c -o UserRequest.lo ../../../src/auth/UserRequest.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c ../../../src/auth/UserRequest.cc -fPIC -DPIC -o .libs/UserRequest.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT UserRequest.lo -MD -MP -MF .deps/UserRequest.Tpo -c ../../../src/auth/UserRequest.cc -o UserRequest.o >/dev/null 2>&1
mv -f .deps/UserRequest.Tpo .deps/UserRequest.Plo
/bin/sh ../../libtool --tag=CXX --mode=link clang++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o libauth.la Type.lo Config.lo CredentialState.lo Gadgets.lo Scheme.lo State.lo User.lo UserRequest.lo basic/libbasic.la ntlm/libntlm.la negotiate/libnegotiate.la digest/libdigest.la
libtool: link: (cd .libs/libauth.lax/libbasic.a && /usr/bin/ar x "/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-9.0-clang/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src/auth/basic/.libs/libbasic.a")>
libtool: link: (cd .libs/libauth.lax/libntlm.a && /usr/bin/ar x "/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-9.0-clang/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src/auth/ntlm/.libs/libntlm.a")>
libtool: link: (cd .libs/libauth.lax/libnegotiate.a && /usr/bin/ar x "/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-9.0-clang/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src/auth/negotiate/.libs/libnegotiate.a")>
libtool: link: (cd .libs/libauth.lax/libdigest.a && /usr/bin/ar x "/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-9.0-clang/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src/auth/digest/.libs/libdigest.a")>
copying selected object files to avoid basename conflicts...
libtool: link: ln .libs/libauth.lax/libbasic.a/Scheme.o .libs/libauth.lax/lt1-Scheme.o || cp .libs/libauth.lax/libbasic.a/Scheme.o .libs/libauth.lax/lt1-Scheme.o
libtool: link: ln .libs/libauth.lax/libbasic.a/User.o .libs/libauth.lax/lt2-User.o || cp .libs/libauth.lax/libbasic.a/User.o .libs/libauth.lax/lt2-User.o
libtool: link: ln .libs/libauth.lax/libbasic.a/UserRequest.o .libs/libauth.lax/lt3-UserRequest.o || cp .libs/libauth.lax/libbasic.a/UserRequest.o .libs/libauth.lax/lt3-UserRequest.o
libtool: link: ln .libs/libauth.lax/libntlm.a/Scheme.o .libs/libauth.lax/lt4-Scheme.o || cp .libs/libauth.lax/libntlm.a/Scheme.o .libs/libauth.lax/lt4-Scheme.o
libtool: link: ln .libs/libauth.lax/libntlm.a/User.o .libs/libauth.lax/lt5-User.o || cp .libs/libauth.lax/libntlm.a/User.o .libs/libauth.lax/lt5-User.o
libtool: link: ln .libs/libauth.lax/libntlm.a/UserRequest.o .libs/libauth.lax/lt6-UserRequest.o || cp .libs/libauth.lax/libntlm.a/UserRequest.o .libs/libauth.lax/lt6-UserRequest.o
libtool: link: ln .libs/libauth.lax/libnegotiate.a/Scheme.o .libs/libauth.lax/lt7-Scheme.o || cp .libs/libauth.lax/libnegotiate.a/Scheme.o .libs/libauth.lax/lt7-Scheme.o
libtool: link: ln .libs/libauth.lax/libnegotiate.a/User.o .libs/libauth.lax/lt8-User.o || cp .libs/libauth.lax/libnegotiate.a/User.o .libs/libauth.lax/lt8-User.o
libtool: link: ln .libs/libauth.lax/libnegotiate.a/UserRequest.o .libs/libauth.lax/lt9-UserRequest.o || cp .libs/libauth.lax/libnegotiate.a/UserRequest.o .libs/libauth.lax/lt9-UserRequest.o
libtool: link: ln .libs/libauth.lax/libdigest.a/Scheme.o .libs/libauth.lax/lt10-Scheme.o || cp .libs/libauth.lax/libdigest.a/Scheme.o .libs/libauth.lax/lt10-Scheme.o
libtool: link: ln .libs/libauth.lax/libdigest.a/User.o .libs/libauth.lax/lt11-User.o || cp .libs/libauth.lax/libdigest.a/User.o .libs/libauth.lax/lt11-User.o
libtool: link: ln .libs/libauth.lax/libdigest.a/UserRequest.o .libs/libauth.lax/lt12-UserRequest.o || cp .libs/libauth.lax/libdigest.a/UserRequest.o .libs/libauth.lax/lt12-UserRequest.o
libtool: link: /usr/bin/ar cru .libs/libauth.a .libs/Type.o .libs/Config.o .libs/CredentialState.o .libs/Gadgets.o .libs/Scheme.o .libs/State.o .libs/User.o .libs/UserRequest.o .libs/libauth.lax/lt1-Scheme.o .libs/libauth.lax/lt2-User.o .libs/libauth.lax/lt3-UserRequest.o .libs/libauth.lax/libbasic.a/auth_basic.o .libs/libauth.lax/lt4-Scheme.o .libs/libauth.lax/lt5-User.o .libs/libauth.lax/lt6-UserRequest.o .libs/libauth.lax/libntlm.a/auth_ntlm.o .libs/libauth.lax/lt7-Scheme.o .libs/libauth.lax/lt8-User.o .libs/libauth.lax/lt9-UserRequest.o .libs/libauth.lax/libnegotiate.a/auth_negotiate.o .libs/libauth.lax/lt10-Scheme.o .libs/libauth.lax/lt11-User.o .libs/libauth.lax/lt12-UserRequest.o .libs/libauth.lax/libdigest.a/auth_digest.o
libtool: link: ranlib .libs/libauth.a
libtool: link: rm -fr .libs/libauth.lax .libs/libauth.lax
libtool: link: ( cd ".libs" && rm -f "libauth.la" && ln -s "../libauth.la" "libauth.la" )
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Acl.lo -MD -MP -MF .deps/Acl.Tpo -c -o Acl.lo ../../../src/auth/Acl.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Acl.lo -MD -MP -MF .deps/Acl.Tpo -c ../../../src/auth/Acl.cc -fPIC -DPIC -o .libs/Acl.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Acl.lo -MD -MP -MF .deps/Acl.Tpo -c ../../../src/auth/Acl.cc -o Acl.o >/dev/null 2>&1
mv -f .deps/Acl.Tpo .deps/Acl.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT AclMaxUserIp.lo -MD -MP -MF .deps/AclMaxUserIp.Tpo -c -o AclMaxUserIp.lo ../../../src/auth/AclMaxUserIp.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT AclMaxUserIp.lo -MD -MP -MF .deps/AclMaxUserIp.Tpo -c ../../../src/auth/AclMaxUserIp.cc -fPIC -DPIC -o .libs/AclMaxUserIp.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT AclMaxUserIp.lo -MD -MP -MF .deps/AclMaxUserIp.Tpo -c ../../../src/auth/AclMaxUserIp.cc -o AclMaxUserIp.o >/dev/null 2>&1
mv -f .deps/AclMaxUserIp.Tpo .deps/AclMaxUserIp.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT AclProxyAuth.lo -MD -MP -MF .deps/AclProxyAuth.Tpo -c -o AclProxyAuth.lo ../../../src/auth/AclProxyAuth.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT AclProxyAuth.lo -MD -MP -MF .deps/AclProxyAuth.Tpo -c ../../../src/auth/AclProxyAuth.cc -fPIC -DPIC -o .libs/AclProxyAuth.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT AclProxyAuth.lo -MD -MP -MF .deps/AclProxyAuth.Tpo -c ../../../src/auth/AclProxyAuth.cc -o AclProxyAuth.o >/dev/null 2>&1
mv -f .deps/AclProxyAuth.Tpo .deps/AclProxyAuth.Plo
/bin/sh ../../libtool --tag=CXX --mode=link clang++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o libacls.la Acl.lo AclMaxUserIp.lo AclProxyAuth.lo
libtool: link: /usr/bin/ar cru .libs/libacls.a .libs/Acl.o .libs/AclMaxUserIp.o .libs/AclProxyAuth.o
libtool: link: ranlib .libs/libacls.a
libtool: link: ( cd ".libs" && rm -f "libacls.la" && ln -s "../libacls.la" "libacls.la" )
Making all in ip
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Address.lo -MD -MP -MF .deps/Address.Tpo -c -o Address.lo ../../../src/ip/Address.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Address.lo -MD -MP -MF .deps/Address.Tpo -c ../../../src/ip/Address.cc -fPIC -DPIC -o .libs/Address.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Address.lo -MD -MP -MF .deps/Address.Tpo -c ../../../src/ip/Address.cc -o Address.o >/dev/null 2>&1
mv -f .deps/Address.Tpo .deps/Address.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Intercept.lo -MD -MP -MF .deps/Intercept.Tpo -c -o Intercept.lo ../../../src/ip/Intercept.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Intercept.lo -MD -MP -MF .deps/Intercept.Tpo -c ../../../src/ip/Intercept.cc -fPIC -DPIC -o .libs/Intercept.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Intercept.lo -MD -MP -MF .deps/Intercept.Tpo -c ../../../src/ip/Intercept.cc -o Intercept.o >/dev/null 2>&1
mv -f .deps/Intercept.Tpo .deps/Intercept.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT QosConfig.lo -MD -MP -MF .deps/QosConfig.Tpo -c -o QosConfig.lo ../../../src/ip/QosConfig.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT QosConfig.lo -MD -MP -MF .deps/QosConfig.Tpo -c ../../../src/ip/QosConfig.cc -fPIC -DPIC -o .libs/QosConfig.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT QosConfig.lo -MD -MP -MF .deps/QosConfig.Tpo -c ../../../src/ip/QosConfig.cc -o QosConfig.o >/dev/null 2>&1
mv -f .deps/QosConfig.Tpo .deps/QosConfig.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT tools.lo -MD -MP -MF .deps/tools.Tpo -c -o tools.lo ../../../src/ip/tools.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT tools.lo -MD -MP -MF .deps/tools.Tpo -c ../../../src/ip/tools.cc -fPIC -DPIC -o .libs/tools.o
libtool: compile: clang++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT tools.lo -MD -MP -MF .deps/tools.Tpo -c ../../../src/ip/tools.cc -o tools.o >/dev/null 2>&1
mv -f .deps/tools.Tpo .deps/tools.Plo
/bin/sh ../../libtool --tag=CXX --mode=link clang++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o libip.la Address.lo Intercept.lo QosConfig.lo tools.lo
libtool: link: /usr/bin/ar cru .libs/libip.a .libs/Address.o .libs/Intercept.o .libs/QosConfig.o .libs/tools.o
libtool: link: ranlib .libs/libip.a
libtool: link: ( cd ".libs" && rm -f "libip.la" && ln -s "../libip.la" "libip.la" )
Making all in icmp
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Icmp.lo -MD -MP -MF .deps/Icmp.Tpo -c -o Icmp.lo ../../../src/icmp/Icmp.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Icmp.lo -MD -MP -MF .deps/Icmp.Tpo -c ../../../src/icmp/Icmp.cc -fPIC -DPIC -o .libs/Icmp.o
libtool: compile: clang++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT Icmp.lo -MD -MP -MF .deps/Icmp.Tpo -c ../../../src/icmp/Icmp.cc -o Icmp.o >/dev/null 2>&1
mv -f .deps/Icmp.Tpo .deps/Icmp.Plo
/bin/sh ../../libtool --tag=CXX --mode=link clang++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o libicmp-core.la Icmp.lo
libtool: link: /usr/bin/ar cru .libs/libicmp-core.a .libs/Icmp.o
libtool: link: ranlib .libs/libicmp-core.a
libtool: link: ( cd ".libs" && rm -f "libicmp-core.la" && ln -s "../libicmp-core.la" "libicmp-core.la" )
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT IcmpSquid.lo -MD -MP -MF .deps/IcmpSquid.Tpo -c -o IcmpSquid.lo ../../../src/icmp/IcmpSquid.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT IcmpSquid.lo -MD -MP -MF .deps/IcmpSquid.Tpo -c ../../../src/icmp/IcmpSquid.cc -fPIC -DPIC -o .libs/IcmpSquid.o
libtool: compile: clang++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT IcmpSquid.lo -MD -MP -MF .deps/IcmpSquid.Tpo -c ../../../src/icmp/IcmpSquid.cc -o IcmpSquid.o >/dev/null 2>&1
mv -f .deps/IcmpSquid.Tpo .deps/IcmpSquid.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile clang++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT net_db.lo -MD -MP -MF .deps/net_db.Tpo -c -o net_db.lo ../../../src/icmp/net_db.cc
libtool: compile: clang++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT net_db.lo -MD -MP -MF .deps/net_db.Tpo -c ../../../src/icmp/net_db.cc -fPIC -DPIC -o .libs/net_db.o
In file included from ../../../src/icmp/net_db.cc:57:
../../../src/neighbors.h:43:1: error: class 'peer' was previously declared as a struct [-Werror,-Wmismatched-tags]
class peer;
^
../../../src/structs.h:760:8: note: previous use is here
struct peer {
       ^
../../../src/neighbors.h:43:1: note: did you mean struct here?
class peer;
^~~~~
struct
1 error generated.
*** Error code 1

Stop in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-9.0-clang/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src/icmp.>
*** Error code 1

Stop in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-9.0-clang/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src.>
*** Error code 1

Stop in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-9.0-clang/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src.>
*** Error code 1

Stop in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-9.0-clang/ws/btlayer-00-default/squid-3.HEAD-BZR/_build.>
*** Error code 1

Stop in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-9.0-clang/ws/btlayer-00-default.>
buildtest.sh result is 1
BUILD: .././test-suite/buildtests/layer-00-default.opts
configure: BUILD LIBRARIES:
configure: BUILD EXTRA LIBRARIES: -lm
configure: BUILD OBJECTS:
configure: BUILD EXTRA OBJECTS:
configure: BUILD C FLAGS: -Wall -g -O2 -I/usr/local/include
configure: BUILD EXTRA C FLAGS: -Werror -pipe -D_REENTRANT
configure: BUILD C++ FLAGS: -g -O2 -I/usr/local/include
configure: BUILD EXTRA C++ FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT
configure: BUILD LIBRARIES:
configure: BUILD EXTRA LIBRARIES: -lm
configure: BUILD OBJECTS:
configure: BUILD EXTRA OBJECTS:
configure: BUILD C FLAGS: -Wall -g -O2 -I/usr/local/include
configure: BUILD EXTRA C FLAGS: -Werror -pipe -D_REENTRANT
configure: BUILD C++ FLAGS: -g -O2 -I/usr/local/include
configure: BUILD EXTRA C++ FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Werror -pipe -D_REENTRANT
../../../src/neighbors.h:43:1: error: class 'peer' was previously declared as a struct [-Werror,-Wmismatched-tags]
*** Error code 1
*** Error code 1
*** Error code 1
*** Error code 1
*** Error code 1
Build FAILED.
Build step 'Execute shell' marked build as failure
Received on Sun Sep 23 2012 - 00:42:28 MDT

This archive was generated by hypermail 2.2.0 : Sun Sep 23 2012 - 12:00:07 MDT