Build failed in Jenkins: 3.HEAD-amd64-OpenBSD-5.4 #6

From: <noc_at_squid-cache.org>
Date: Tue, 11 Mar 2014 16:13:21 +0100 (CET)

See <http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/6/changes>

Changes:

[Amos Jeffries] Prep for 3.3.12 and 3.4.4

[Alex Rousskov] Avoid assertions on Range requests that trigger Squid-generated errors.

Added HttpRequest::ignoreRange() to encapsulate range ignoring logic.
Currently the new method only contains the code common among all callers. More
work is needed to check whether further caller homogenization is possible.

Documented that ClientSocketContext::getNextRangeOffset() may sometimes be
called before it is ready to do its job.

[Amos Jeffries] Protect MemBlob::append() against raw-space writes

There is no guarantee that the 'unused' area of MemBlob is actually
unused. For example if a read buffer was being filled into the
rawSpace() of a SBuf or MemBlob it will overlap with this empty area
until a read call updates the related size state in MemBlob/SBuf.

For these cases we must use memmove() which guarantees no buffer
corruption will take place on memory overlaps.

[Amos Jeffries] Copyright: Remove explicit claims on src/ by Treehouse Networks Ltd.

Amos Jeffries is listed as author in CONTRIBUTORS and Treehouse Networks
Ltd. listed in SPONSORS and commit messages.

[Amos Jeffries] Copyright: Relicense helpers by Treehouse Networks Ltd.

Update the license on helper code designed and authored by myself using
the BSD 2-clause license. This makes the example helper code and license
more legally acceptible for use as a basis of proprietary helpers while
remaining compatible with GPL for distribution with Squid.

[Amos Jeffries] Languages: Georgian dialect

[Amos Jeffries] Languages: Georgian

[Amos Jeffries] Translation: update POT content

[Amos Jeffries] Better fix for CMSG definitions

It turns out autoconf versions are not consistent with $ symbol escaping
which can cause incorrect definitions. Revert to AC_CHECK_TYPE instead.
Its a bit more verbose in configure.ac but works more often than not.

[Amos Jeffries] Portability: define CMSG related structures individually

Some OS provide the CMSG related definitions and others only partially
define them. Sometimes (Windows particularly) this varies between build
environments.

Checking for each symbol separately and providing only those needed
avoids problems we have been having with missing or redefined symbols
on Windows and elsewhere.

[Amos Jeffries] Add debug messages indicating type/reason for HITs

[Amos Jeffries] Fix helper ID number assignment

Since helpers are now dynamically started the old method of allocating
an ID number based on the current start sequence can result in many
helpers being assigned overlapping ID numbers.

Use InstanceID template instead to assure a unique incremental ID is
assigned to each helper no matter when it is started.

[Francesco Chemolli] Fix syntax error in pinger

[Alex Rousskov] Migrated RegisteredRunners to a multi-action interface.

Old generic two-action RegisteredRunners were good for handling paired
create/destroy events, but not all main.cc events fit that model well. In
fact, even the old runners implemented the destruction action for one event
only (rrAfterConfig); all other runners implemented a single action.

The adjusted API better supports runners that are interested in any number
of the supported events. It also allows a single runner object to handle
multiple events, which simplifies current code and may help with better
[re]configuration handling in the future.

Added startShutdown() and finishShutdown() events. The former will be needed
for authentication module shutdown and more polished shutdown initiation code
in general (patch pending). The latter is needed for final cleanup code that
previously ran as the destruction action for rrAfterConfig. finishShutdown()
also destroys all runners.

Note that the master process in SMP mode does not run startShutdown because
that process lacks the main loop and startShutdown() promises at least one
main loop iteration (to help with clean connections closures, for example).

Added syncConfig() event that will be needed for the standby pool
implementation (patch pending) and future code that reacts to Squid
configuration changes caused by reconfiguration.

"after config" event is now called "use config" to better match verb+noun or
action+object naming scheme.

[Alex Rousskov] Fixed stalled concurrent rock store reads by insuring their ID uniqueness.

Added a check to prevent similar bugs from occurring in the future.

[Amos Jeffries] Cleanup: un-wrap C++ header includes

Coding guideline is now that standard C++ headers are not to be
wrapped in HAVE_ macros.

* Remove HAVE_ macros for currently wrapped C++ headers.
Includes removing autoconf checks.

* Replace C includes with C++ includes where possible

Also, <cstdio> / <stdio.h> has issues on 64-bit systems and a
portable fixed version is provided by libcompat via squid.h
It should not be included anywhere in the Squid sources.

[Amos Jeffries] Languages: updated Serbian aliases

[Amos Jeffries] Bug 3186, Bug 3628: Digest authentication always sending stale=false for nonce

[Amos Jeffries] Fix compile issues in rev.13288

[Amos Jeffries] squidclient: --ping mode module support

Module support:

Update squidclient support modules with different logics
and configuration option sets as a basis for multiple
protocol support.

A mechanism is added to allow each module to have its own
command line option set. Any option unknown to the current
module handler drops back to the main loop for processing.

--ping mode module:

Break the existing code "ping mode" operations and command
line processing out from the main squidclient.cc into Ping.*

Ping-specific short command line options are now only parsed
after a mode flag (--ping) is presented. This frees up the
-g and -I options for use by other non-ping modules in future.

Also, shuffle squidclient code into its own directory
tools/squidclient/ to keep the tool code files clearly
identifiable now that they are multiplying.

[Amos Jeffries] Bug 3628: Digest auth sending stale=false on nonce mismatch

[Christos Tsantilas] dynamic_cert_mem_cache_size option related fixes part2: "make check" fails

[Christos Tsantilas] dynamic_cert_mem_cache_size option related fixes

This patch fixes the following problems:

1) The dynamic_cert_mem_cache_size does not change on reconfigure

2) When dynamic_cert_mem_cache_size of http_port set to 0 then:

a) The dynamic certs cache is grow unlimited.
This patch just disables certificates caching when this option set to 0.

b) Huge amount of memory appeared as free cache memory in "Cached ssl
certificates statistic" page of cache manager.
This problem caused because of a signed to unsigned int conversion.

This is a Measurement Factory project

[Francesco Chemolli] Fix uses of std::remove to actually resize the data structures which were cleaned-up.

[Amos Jeffries] Fix pthread library detection on FreeBSD 10

We should not be using "cut -b1" anywhere to determine OS version
number. It drops digits out of the major version number.

[Amos Jeffries] Fix umask default on crash report generated email

[Amos Jeffries] Bug 4029: intercepted HTTPS requests bypass caching checks

[Amos Jeffries] Fix shadowed variable in rev.13279

[Amos Jeffries] squidclient: support long options on command line

[Amos Jeffries] squidclient: polish and documentation

[Amos Jeffries] squidclient: support verbosity levels

This makes the -v option repeatable. By default no debug is displayed.
Each time -v is repeated the level of debug message verbosity is raised.

Three levels of verbosity are currently defined:
0 - no output except ERROR messages.
1 - display HTTP request sent
2 - display actions taken connecting to server

[Amos Jeffries] squidclient: polish and update help display

[Amos Jeffries] Fix memory leak regression in SNMP from rev.13274

Variable "name" going out of scope leaks the storage it points to if any
of the parse was done by incomplete.

Detected by Coverity Scan. Issue 1174204.

[Amos Jeffries] Bug 4001: remove use of strsep()

The strsep() function is not defined by POSIX. Additionally
auto-tools has been having some obscure issues detecting
or linking the provided implementation into libcompat on
Windows and Solaris respectively. Which are the two known
OS requiring it.

Investigation of its use in Squid revealed that it can be
replaced with strcspan() which is both portable and more
efficient since it also removes the need for several
strdup()/free() operations used to protect Squid from
strsep() memory fiddling.

[Amos Jeffries] Bug 4026: SSL and adaptation_access does not handle aborted connections

[Amos Jeffries] Revert rev.13271

[Amos Jeffries] Bug 4026: SSL and adaptation_access does not handle aborted connections

[Francesco Chemolli] Refactor Vector and Stack to STL counterparts

[Francesco Chemolli] Vector refactor: move almost all clients to std::vector from Vector

[Amos Jeffries] Cleanup: remove garbage prefixes from Digest auth debugs

[Francesco Chemolli] Fix argument name conflict in Auth::Config::findUserInCache

[Francesco Chemolli] Merge vector-refactor branch: align Vector API with std::vector

[Amos Jeffries] Bug 3969: user credentials cache lookup for Digest authentication broken

Changes to the username credentials cache were made in Basic auth but
the matching changes were not duplicated to Digest auth. Since the
lookup is identical move it to generic Auth::Config.

Also fixes assertion auth_digest.cc:759:
"(nonce->user == NULL) || (nonce->user == user)"

[Amos Jeffries] Fix cstdio compile errors

[Amos Jeffries] Source Maintenance - manual run

[Amos Jeffries] Move compat/unsafe.h protections from libcompat to source maintenance

It is sufficient to run a code scan from source-maintenance.sh for the
unsafe functions being used in Squid-specific code instead of
hard-coding compiler breakage on users.
This also "fixes" reporting of errors when cstdio pulls in use of the
unsafe functions by stdlib.

[Amos Jeffries] Various fixes to configure for FreeBSD 10

* Detect cstdio file presence for libcompat

* Fix shell syntax in Heimdal Kerberos library detection

[Amos Jeffries] SourceLayout: shuffle URLScheme to AnyP::UriScheme

This class holds a generic protocol agnostic Scheme representation.

* rename const_str() member to c_str() since it produces a const C-string
(char*) representation.

* Remove some unecessary dependencies.

* Cleanup the coding style to match guidelines.

[Amos Jeffries] Regression Bug 3769: client_netmask not evaluated since Comm redesign

[Francesco Chemolli] Fix r13257 commit

[Francesco Chemolli] Fix keepalive handling for non-ranged requests.

Internal keepalive flag was ignored by a mismatched interface between ClientSocketContext::socketState
and writeComplete in the case of non-ranged requests.

[Amos Jeffries] Prep for 3.4.3

[Amos Jeffries] Fix peerSelectDnsResults() IP address cycling

The local ip variable is the index of the IP address to be used.
Loop counter n is only used to prevent cycling indefinitely and should
not be used to access the array indexes.

[Amos Jeffries] Revert rev.13253 - fuba

[Amos Jeffries] Merge from trunk

[Christos Tsantilas] Fix documentation for key_extras authentication helper parameter

[Francesco Chemolli] Fix configure syntax error on strict shells

[Alex Rousskov] Comm job callbacks need job's cbdata pointer, not a job pointer.

Otherwise, in complex inheritance hierarchies, some [inner] classes will
hit cbdata cookie assertions when scheduling Comm calls with callbacks.

[Amos Jeffries] Bug 3975: atomic detection cross-compilation failure

[Amos Jeffries] Bug 3608: part 1 - per-service name for workers UDS sockets

Separate the UDS socket names used by SMP workers by the -n service_name
label assigned to the Squid instance being run.

TODO: separate shared memory blocks per-service.

[Amos Jeffries] Add ${service_name} macro to squid.conf processing

This allows squid.conf directives to be configured per-service by
expanding into the -n service_name parameter. The default is "squid".

[Amos Jeffries] Bug 3954: compile failure in CpuAffinity.cc

Patch written by 'dim [1]' contributor to FreeBSD and imported to Squid
under FreeBSD license. see
http://svnweb.freebsd.org/ports/head/www/squid33/files/patch-include__Array.h

[Amos Jeffries] Enable -n command line option for non-Windows Squid builds

This command line option is used on Windows to name the service instance
of Squid being run and/or managed. At this point it still only has
useful effect on Windows, but can now be used by components on other
systems as well.

Show the running instance service name in cacehmgr and -v output.

Also remove _WIN_SQUID_DEFAULT_SERVICE_NAME macro which duplicated the
APP_SHORTNAME macro. This changes the Windows service name from Squid to
squid (lower case) on future Squid-3 for Windows.

[Amos Jeffries] Initialize asyncLoopDepth_ in constructor

Detected by Coverity Scan. Issue 740529.

[Christos Tsantilas] Bug 3971: "BUG: cannot aggregate mgr:client_list: cmd->profile != NULL" in SMP mode

When running Squid in SMP mode, the 'client_list' command cannot be used as the
coordinator doesn't call clientdbInit(), and thus doesn't have the client_list
action registered.

This patch uses RegisteredRunner to initialize clientdb and register the
'client_list' command

[Amos Jeffries] Bug 1202 part 1: documentation and debugs for refresh_pattern algorithms

This contains only the code documentation and debugs changes as relevant
to the current code. Some which are only relevant to the new code from
that bug patch have been omitted.

It omits all logic changes and function renaming changes.

[Amos Jeffries] Set error page Content-Type character set to UTF-8

This fixes issues with some user agents displaying non-English / ASCII
error page translations. Our translation system uses and produces UTF-8
templates for the langpack content.

It also encourages UTF-8 usage in third-party error pages.

[Amos Jeffries] cachemgr: Enable per-report Content-Type header

The default for all reports is plain text in UTF-8.

NOTE: UTF-8 selected because although current reports limit themselves
to ASCII character ranges, some reports may contain text pulled from the
protocol transferred and UTF-8 display covers most unexpected cases.

[Amos Jeffries] Cleanup refreshCountsStats() cache manager code

* Replace a #define macro with local static function.

* Replace pointer parameter with reference

* suppress display of histograms where there are no records and so no
meaningful content to be displayed.

[Amos Jeffries] Docs: update refresh_pattern internal documentation

[Amos Jeffries] Fix external_acl_type async loop failures

When externa_acl_type uses %LOGIN and is required to trigger async
authentication lookups it returns and hits the async loop prevention
check when starting to trigger its own external helper lookup. This
results in a DUNNO output from the helper as final status instead of
the real helepr lookup result.

Avoid these by allowing async helpers to loop several times before
aborting the lookups.

Also, extend debug message to indicate loop count.

Thanks to Peter Benko for trackign down the issue and testing solutions.

[Amos Jeffries] Revert and replace rev.13234

Clang dentifies the StoreIOBuffer parameter as unsigned,
error: comparison of unsigned expression < 0 is always false

[Amos Jeffries] Bug 4008: HttpHeader warnOnError should be an int not a bool

[Amos Jeffries] Cleanup: Fix StoreIOBuffer initialization cases

When StoreIOBuffer isconstructed with an invalid (negative) size for the
content data mark it as an error immedately and set a valid length of
zero bytes.

Also, remove some unnecessary code in store_client.cc resulting.

Detected by Coverity Scan. Issue 434132.

[Amos Jeffries] Cleanup: Improve testACLMaxUserIP NULL checks

Detected by Coverity Scan. Issue 1140358.

[Amos Jeffries] Cleanup: ICAP adaptation pointer handling

Divert unlikely but possible request NULL pointer into the Must()
condition handler for missing History data.

Detected by Coverity Scan. Issue 740365.

[Amos Jeffries] Fix rfcnb library potential NULL pointer dereference

Malformed RFCNB packet may lead to crash.

Detected by Coverity Scan. Issue 740355.

[Amos Jeffries] Fix memory leak in peer cache Digest exchange

Detected by Coverity Scan. Issue 1094115.

[Amos Jeffries] Fix MemMapSlot constructor initialization of expiry TTL

Also, restyle MemMap constructor initialization list.

Detected by Coverity Scan. Issue 1153961.

[Francesco Chemolli] Shuffle coverity marker

[Francesco Chemolli] Mark a behavior detected by Coverity as defect as intentional

[Amos Jeffries] Bug 3986: assertion failed due to incorrect error page buffer size

errorpage.cc:1307:
"(size_t)content->contentSize() == strlen(content->content())"

[Christos Tsantilas] SMP SSL session cache implementation

This patch implement SSL session cache sharing across SMP workers using shared
memory. The following new squid configuration options added:

- The "sslproxy_session_cache_size" option which sets the cache size to use
for ssl session. Example usage:
sslproxy_session_cache_size 4 MB

- The "sslproxy_session_ttl" option which defines the time in seconds the
ssl session is valid. Example usage:
sslproxy_session_ttl 600

This is a Measurement Factory project

[Christos Tsantilas] SMP shared cache with timeouts for squid

This patch investigates the Ipc::MemMap class which is a shared cache with
timeouts for use with squid SMP.

TODO: Ipc::MemMap class has similar interfaces and functionality with the
Ipc::StoreMap class. These two classes should implemented as kid classes of
an Ipc::SharedCache class which encompass features from Ipc::MemMap and
Ipc::StoreMap classes.

This is a Measurement Factory project

[Francesco Chemolli] Coverity defect 1151594: side-effect in assertion in CollapsedForwarding

[Francesco Chemolli] Document and enforce invariant on Format::Token.divisor

[Francesco Chemolli] Fix coding ambiguity in store_repl_heap.cc and heap.h

[Amos Jeffries] Docs: fix various doxygen compiler issues

[Francesco Chemolli] SquidNew: don't redefine new and delete on clang

[Francesco Chemolli] Fix include guard in include/rfc1123.h

[Francesco Chemolli] Fix header-guard in include/uudecode.h

[Francesco Chemolli] Fix header-guards in compat/os/hpux.h

[Amos Jeffries] Bug 3996: Malformed DNS reply leads to crash

[Amos Jeffries] Bug 3927: tests/testRock fatal.cc required

[Amos Jeffries] Disable error page translation by default in builds

There is no need for every build from VCS to have fresh translations.

Enable explicitly for snapshot and release scripts instead so that
translated template files are still available online and pre-translated
in the distributed packages.

[Amos Jeffries] Cleanup: remove ClientSocketContextNew() wrapper function

This wrapper function for the ClientSocketContext default constructor
is better performed as an explicit parametered constructor which
prevents accidental use of the default constructor leading to invalid
state after creation (a context always requires connectino and parent
pointers).

[Amos Jeffries] Cleanup: remove useless makesnmplib variable from build

Squid coding guidelines require automake variables to use naming pattern
ENABLE_* and there is already ENABLE_SNMP defined with intended overlap
of usage. We can drop this unusual variable completely.

[Alex Rousskov] Centrally destroy all explicit and implicit ACLs to avoid destruction segfaults
during reconfiguration.

Group ACLs created later may use other ACLs created earlier and vice versa, a
group ACL created earlier may use other ACLs created later. The latter is
possible when an ACL (e.g., A2 below) is declared when the group already
exists:

acl A1 src 127.0.0.1
acl Group all-of A1
acl A2 src 127.0.0.2
acl Group all-of A2

Thus, the group (i.e., InnerNode) ACL destructor may access already deleted
children regardless of the global ACL deletion order (FIFO or LIFO with
respect to ACL creation). Instead of relying on the deletion order to protect
InnerNode, we remove the InnerNode ACL destructor completely and rely on a
global set of registered ACLs to destroy all ACLs.

The old code was destroying all explicit ACLs in the same centralized fashion.
We now add implicit ACLs (commonly used by InnerNodes) to the centralized
destruction sequence. We added a new destruction-dedicated container to avoid
messing with the by-name ACL search that Config.aclList global is used for.
This new container will become unnecessary once we start refcounting ACLs.

[Amos Jeffries] Release Notes update for 2.5

[Amos Jeffries] Add logformat code %>rd to log client URL domain name

Logging the Host header or the full URL have been the only ways to log
the domain name requested by the client. However full URL may contain
far too many unwanted bytes and Host header many contain a host:port
very different to the URL.

This work is sponsored by Brendan Kearney

[Amos Jeffries] Bug 3995: compile error on CentOS 5 with GCC 4.1.2

[Francesco Chemolli] Merge from CharacterSet

[Francesco Chemolli] Merge storeentry-refactor, fix store unit test

[Francesco Chemolli] Fix SBuf::rfind

[Francesco Chemolli] Fix SBuf and SBufList unit tests linkage

[Alex Rousskov] tests/testSBufList on CentOS needs MemObject::endOffset().

[Alex Rousskov] Initial Large Rock and Collapsed Forwarding support.

Large Rock: Support disk (and shared memory) caching of responses exceeding
one db slot (or one shared memory page) in size. A single db slot/page size is
still limited to 32KB (smaller values can be configured for disk caches using
the newly added cache_dir slot-size option). Removal of old rock cache dir
(followed by squid-z) is required -- the on-disk db structure has changed.

Collapsed Forwarding: Optionally merge concurrent cachable requests for the
same URI earlier: After the request headers have been parsed (as before), but
now _before_ the response headers have been received. Merging of requests
received by different SMP workers is supported. Controlled by the new
collapsed_forwarding directive in squid.conf. Disabled by default because all
but one of the merged requests have to be delayed (until the response headers
are received) for the merging to work, which may be worse than forwarding all
concurrent requests immediately. The overall feature idea and request
eligibility conditions are based on Collapsed Forwarding in Squid2.

Summary of other important changes (merged branch log contains the details):

* Tightened StoreEntry locking. Split StoreEntry::lock() into "just lock" and
"update entry reference time" interfaces, addressing an old XXX. Improved
entry lock/unlock debugging. Needs more work.

* Adjusted StoreIOState::write() API to allow callers detect write errors.

* Simplified MemObject::write() API to remove an essentially unused callback.

* Mark client streams that sent everything as STREAM_COMPLETE. The old code
used STREAM_UNPLANNED_COMPLETE if the completed stream was associated with a
non-persistent connection, which did not make sense to me and, IIRC, led to
store entry aborts even though the entries were not damaged in any way.

* mem_hdr::hasContigousContentRange() now returns true for empty ranges.

* Support "appending" ReadWriteLock state that can be shared by readers and
the writer. The writer promises not to update key metadata (except growing
object size and next pointers) and readers promise to be careful when
reading growing slices.

* Fixed StoreEntry::mayStartSwapOut() logic to handle terminated swapouts.

* Improved STORE_MEM_CLIENT detection and documented known (and mostly old)
StoreEntry::storeClientType() problems.

* Removed StoreEntry::hidden_mem_obj hack.

* Polished StoreEntry debugging to report more info, less noise. Use e: prefix.

* Added a script to extract store entry(ies) debugging from cache.log.

[Alex Rousskov] Added MemBlob::appended() method. Handy during out-of-band buffer manipulation.

[Amos Jeffries] Prep for 3.4.2

[Amos Jeffries] Bug 3498: FTP PUT assertion Server.cc:246: "r->body_pipe != NULL"

------------------------------------------
[...truncated 4311 lines...]
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" )
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Acl.lo -MD -MP -MF .deps/Acl.Tpo -c -o Acl.lo ../../../src/auth/Acl.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Acl.lo -MD -MP -MF .deps/Acl.Tpo -c ../../../src/auth/Acl.cc -fPIC -DPIC -o .libs/Acl.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -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
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT AclMaxUserIp.lo -MD -MP -MF .deps/AclMaxUserIp.Tpo -c -o AclMaxUserIp.lo ../../../src/auth/AclMaxUserIp.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT AclMaxUserIp.lo -MD -MP -MF .deps/AclMaxUserIp.Tpo -c ../../../src/auth/AclMaxUserIp.cc -fPIC -DPIC -o .libs/AclMaxUserIp.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -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
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT AclProxyAuth.lo -MD -MP -MF .deps/AclProxyAuth.Tpo -c -o AclProxyAuth.lo ../../../src/auth/AclProxyAuth.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT AclProxyAuth.lo -MD -MP -MF .deps/AclProxyAuth.Tpo -c ../../../src/auth/AclProxyAuth.cc -fPIC -DPIC -o .libs/AclProxyAuth.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -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
/usr/local/bin/bash ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -g -lpthread -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 http
(awk -f ../../../src/mk-string-arrays.awk < ../../../src/http/MethodType.h | sed -e 's%METHOD_%%' -e 's%_C%-C%' >MethodType.cc) || (/bin/rm -f -f MethodType.cc && exit 1)
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT MethodType.lo -MD -MP -MF .deps/MethodType.Tpo -c -o MethodType.lo MethodType.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT MethodType.lo -MD -MP -MF .deps/MethodType.Tpo -c MethodType.cc -fPIC -DPIC -o .libs/MethodType.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT MethodType.lo -MD -MP -MF .deps/MethodType.Tpo -c MethodType.cc -o MethodType.o >/dev/null 2>&1
mv -f .deps/MethodType.Tpo .deps/MethodType.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StatusCode.lo -MD -MP -MF .deps/StatusCode.Tpo -c -o StatusCode.lo ../../../src/http/StatusCode.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StatusCode.lo -MD -MP -MF .deps/StatusCode.Tpo -c ../../../src/http/StatusCode.cc -fPIC -DPIC -o .libs/StatusCode.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StatusCode.lo -MD -MP -MF .deps/StatusCode.Tpo -c ../../../src/http/StatusCode.cc -o StatusCode.o >/dev/null 2>&1
mv -f .deps/StatusCode.Tpo .deps/StatusCode.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StatusLine.lo -MD -MP -MF .deps/StatusLine.Tpo -c -o StatusLine.lo ../../../src/http/StatusLine.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StatusLine.lo -MD -MP -MF .deps/StatusLine.Tpo -c ../../../src/http/StatusLine.cc -fPIC -DPIC -o .libs/StatusLine.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StatusLine.lo -MD -MP -MF .deps/StatusLine.Tpo -c ../../../src/http/StatusLine.cc -o StatusLine.o >/dev/null 2>&1
mv -f .deps/StatusLine.Tpo .deps/StatusLine.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -g -lpthread -o libsquid-http.la MethodType.lo StatusCode.lo StatusLine.lo
libtool: link: /usr/bin/ar cru .libs/libsquid-http.a .libs/MethodType.o .libs/StatusCode.o .libs/StatusLine.o
libtool: link: ranlib .libs/libsquid-http.a
libtool: link: ( cd ".libs" && rm -f "libsquid-http.la" && ln -s "../libsquid-http.la" "libsquid-http.la" )
Making all in ip
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Address.lo -MD -MP -MF .deps/Address.Tpo -c -o Address.lo ../../../src/ip/Address.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Address.lo -MD -MP -MF .deps/Address.Tpo -c ../../../src/ip/Address.cc -fPIC -DPIC -o .libs/Address.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -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
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Intercept.lo -MD -MP -MF .deps/Intercept.Tpo -c -o Intercept.lo ../../../src/ip/Intercept.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Intercept.lo -MD -MP -MF .deps/Intercept.Tpo -c ../../../src/ip/Intercept.cc -fPIC -DPIC -o .libs/Intercept.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -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
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT QosConfig.lo -MD -MP -MF .deps/QosConfig.Tpo -c -o QosConfig.lo ../../../src/ip/QosConfig.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT QosConfig.lo -MD -MP -MF .deps/QosConfig.Tpo -c ../../../src/ip/QosConfig.cc -fPIC -DPIC -o .libs/QosConfig.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -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
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT tools.lo -MD -MP -MF .deps/tools.Tpo -c -o tools.lo ../../../src/ip/tools.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT tools.lo -MD -MP -MF .deps/tools.Tpo -c ../../../src/ip/tools.cc -fPIC -DPIC -o .libs/tools.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -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
/usr/local/bin/bash ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -g -lpthread -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
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Icmp.lo -MD -MP -MF .deps/Icmp.Tpo -c -o Icmp.lo ../../../src/icmp/Icmp.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Icmp.lo -MD -MP -MF .deps/Icmp.Tpo -c ../../../src/icmp/Icmp.cc -fPIC -DPIC -o .libs/Icmp.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -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
/usr/local/bin/bash ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -g -lpthread -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" )
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT IcmpSquid.lo -MD -MP -MF .deps/IcmpSquid.Tpo -c -o IcmpSquid.lo ../../../src/icmp/IcmpSquid.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT IcmpSquid.lo -MD -MP -MF .deps/IcmpSquid.Tpo -c ../../../src/icmp/IcmpSquid.cc -fPIC -DPIC -o .libs/IcmpSquid.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -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
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT net_db.lo -MD -MP -MF .deps/net_db.Tpo -c -o net_db.lo ../../../src/icmp/net_db.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT net_db.lo -MD -MP -MF .deps/net_db.Tpo -c ../../../src/icmp/net_db.cc -fPIC -DPIC -o .libs/net_db.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_CONFIG_FILE=NULL -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT net_db.lo -MD -MP -MF .deps/net_db.Tpo -c ../../../src/icmp/net_db.cc -o net_db.o >/dev/null 2>&1
mv -f .deps/net_db.Tpo .deps/net_db.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -g -lpthread -o libicmp.la IcmpSquid.lo net_db.lo
libtool: link: /usr/bin/ar cru .libs/libicmp.a .libs/IcmpSquid.o .libs/net_db.o
libtool: link: ranlib .libs/libicmp.a
libtool: link: ( cd ".libs" && rm -f "libicmp.la" && ln -s "../libicmp.la" "libicmp.la" )
Making all in ident
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT AclIdent.lo -MD -MP -MF .deps/AclIdent.Tpo -c -o AclIdent.lo ../../../src/ident/AclIdent.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT AclIdent.lo -MD -MP -MF .deps/AclIdent.Tpo -c ../../../src/ident/AclIdent.cc -fPIC -DPIC -o .libs/AclIdent.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT AclIdent.lo -MD -MP -MF .deps/AclIdent.Tpo -c ../../../src/ident/AclIdent.cc -o AclIdent.o >/dev/null 2>&1
mv -f .deps/AclIdent.Tpo .deps/AclIdent.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Ident.lo -MD -MP -MF .deps/Ident.Tpo -c -o Ident.lo ../../../src/ident/Ident.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Ident.lo -MD -MP -MF .deps/Ident.Tpo -c ../../../src/ident/Ident.cc -fPIC -DPIC -o .libs/Ident.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Ident.lo -MD -MP -MF .deps/Ident.Tpo -c ../../../src/ident/Ident.cc -o Ident.o >/dev/null 2>&1
mv -f .deps/Ident.Tpo .deps/Ident.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -g -lpthread -o libident.la AclIdent.lo Ident.lo
libtool: link: /usr/bin/ar cru .libs/libident.a .libs/AclIdent.o .libs/Ident.o
libtool: link: ranlib .libs/libident.a
libtool: link: ( cd ".libs" && rm -f "libident.la" && ln -s "../libident.la" "libident.la" )
Making all in log
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT access_log.lo -MD -MP -MF .deps/access_log.Tpo -c -o access_log.lo ../../../src/log/access_log.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT access_log.lo -MD -MP -MF .deps/access_log.Tpo -c ../../../src/log/access_log.cc -fPIC -DPIC -o .libs/access_log.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT access_log.lo -MD -MP -MF .deps/access_log.Tpo -c ../../../src/log/access_log.cc -o access_log.o >/dev/null 2>&1
mv -f .deps/access_log.Tpo .deps/access_log.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Config.lo -MD -MP -MF .deps/Config.Tpo -c -o Config.lo ../../../src/log/Config.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Config.lo -MD -MP -MF .deps/Config.Tpo -c ../../../src/log/Config.cc -fPIC -DPIC -o .libs/Config.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Config.lo -MD -MP -MF .deps/Config.Tpo -c ../../../src/log/Config.cc -o Config.o >/dev/null 2>&1
mv -f .deps/Config.Tpo .deps/Config.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT File.lo -MD -MP -MF .deps/File.Tpo -c -o File.lo ../../../src/log/File.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT File.lo -MD -MP -MF .deps/File.Tpo -c ../../../src/log/File.cc -fPIC -DPIC -o .libs/File.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT File.lo -MD -MP -MF .deps/File.Tpo -c ../../../src/log/File.cc -o File.o >/dev/null 2>&1
mv -f .deps/File.Tpo .deps/File.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatHttpdCombined.lo -MD -MP -MF .deps/FormatHttpdCombined.Tpo -c -o FormatHttpdCombined.lo ../../../src/log/FormatHttpdCombined.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatHttpdCombined.lo -MD -MP -MF .deps/FormatHttpdCombined.Tpo -c ../../../src/log/FormatHttpdCombined.cc -fPIC -DPIC -o .libs/FormatHttpdCombined.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatHttpdCombined.lo -MD -MP -MF .deps/FormatHttpdCombined.Tpo -c ../../../src/log/FormatHttpdCombined.cc -o FormatHttpdCombined.o >/dev/null 2>&1
mv -f .deps/FormatHttpdCombined.Tpo .deps/FormatHttpdCombined.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatHttpdCommon.lo -MD -MP -MF .deps/FormatHttpdCommon.Tpo -c -o FormatHttpdCommon.lo ../../../src/log/FormatHttpdCommon.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatHttpdCommon.lo -MD -MP -MF .deps/FormatHttpdCommon.Tpo -c ../../../src/log/FormatHttpdCommon.cc -fPIC -DPIC -o .libs/FormatHttpdCommon.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatHttpdCommon.lo -MD -MP -MF .deps/FormatHttpdCommon.Tpo -c ../../../src/log/FormatHttpdCommon.cc -o FormatHttpdCommon.o >/dev/null 2>&1
mv -f .deps/FormatHttpdCommon.Tpo .deps/FormatHttpdCommon.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidCustom.lo -MD -MP -MF .deps/FormatSquidCustom.Tpo -c -o FormatSquidCustom.lo ../../../src/log/FormatSquidCustom.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidCustom.lo -MD -MP -MF .deps/FormatSquidCustom.Tpo -c ../../../src/log/FormatSquidCustom.cc -fPIC -DPIC -o .libs/FormatSquidCustom.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidCustom.lo -MD -MP -MF .deps/FormatSquidCustom.Tpo -c ../../../src/log/FormatSquidCustom.cc -o FormatSquidCustom.o >/dev/null 2>&1
mv -f .deps/FormatSquidCustom.Tpo .deps/FormatSquidCustom.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidIcap.lo -MD -MP -MF .deps/FormatSquidIcap.Tpo -c -o FormatSquidIcap.lo ../../../src/log/FormatSquidIcap.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidIcap.lo -MD -MP -MF .deps/FormatSquidIcap.Tpo -c ../../../src/log/FormatSquidIcap.cc -fPIC -DPIC -o .libs/FormatSquidIcap.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidIcap.lo -MD -MP -MF .deps/FormatSquidIcap.Tpo -c ../../../src/log/FormatSquidIcap.cc -o FormatSquidIcap.o >/dev/null 2>&1
mv -f .deps/FormatSquidIcap.Tpo .deps/FormatSquidIcap.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidNative.lo -MD -MP -MF .deps/FormatSquidNative.Tpo -c -o FormatSquidNative.lo ../../../src/log/FormatSquidNative.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidNative.lo -MD -MP -MF .deps/FormatSquidNative.Tpo -c ../../../src/log/FormatSquidNative.cc -fPIC -DPIC -o .libs/FormatSquidNative.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidNative.lo -MD -MP -MF .deps/FormatSquidNative.Tpo -c ../../../src/log/FormatSquidNative.cc -o FormatSquidNative.o >/dev/null 2>&1
mv -f .deps/FormatSquidNative.Tpo .deps/FormatSquidNative.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidReferer.lo -MD -MP -MF .deps/FormatSquidReferer.Tpo -c -o FormatSquidReferer.lo ../../../src/log/FormatSquidReferer.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidReferer.lo -MD -MP -MF .deps/FormatSquidReferer.Tpo -c ../../../src/log/FormatSquidReferer.cc -fPIC -DPIC -o .libs/FormatSquidReferer.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidReferer.lo -MD -MP -MF .deps/FormatSquidReferer.Tpo -c ../../../src/log/FormatSquidReferer.cc -o FormatSquidReferer.o >/dev/null 2>&1
mv -f .deps/FormatSquidReferer.Tpo .deps/FormatSquidReferer.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidUseragent.lo -MD -MP -MF .deps/FormatSquidUseragent.Tpo -c -o FormatSquidUseragent.lo ../../../src/log/FormatSquidUseragent.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidUseragent.lo -MD -MP -MF .deps/FormatSquidUseragent.Tpo -c ../../../src/log/FormatSquidUseragent.cc -fPIC -DPIC -o .libs/FormatSquidUseragent.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FormatSquidUseragent.lo -MD -MP -MF .deps/FormatSquidUseragent.Tpo -c ../../../src/log/FormatSquidUseragent.cc -o FormatSquidUseragent.o >/dev/null 2>&1
mv -f .deps/FormatSquidUseragent.Tpo .deps/FormatSquidUseragent.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModDaemon.lo -MD -MP -MF .deps/ModDaemon.Tpo -c -o ModDaemon.lo ../../../src/log/ModDaemon.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModDaemon.lo -MD -MP -MF .deps/ModDaemon.Tpo -c ../../../src/log/ModDaemon.cc -fPIC -DPIC -o .libs/ModDaemon.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModDaemon.lo -MD -MP -MF .deps/ModDaemon.Tpo -c ../../../src/log/ModDaemon.cc -o ModDaemon.o >/dev/null 2>&1
mv -f .deps/ModDaemon.Tpo .deps/ModDaemon.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModStdio.lo -MD -MP -MF .deps/ModStdio.Tpo -c -o ModStdio.lo ../../../src/log/ModStdio.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModStdio.lo -MD -MP -MF .deps/ModStdio.Tpo -c ../../../src/log/ModStdio.cc -fPIC -DPIC -o .libs/ModStdio.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModStdio.lo -MD -MP -MF .deps/ModStdio.Tpo -c ../../../src/log/ModStdio.cc -o ModStdio.o >/dev/null 2>&1
mv -f .deps/ModStdio.Tpo .deps/ModStdio.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModSyslog.lo -MD -MP -MF .deps/ModSyslog.Tpo -c -o ModSyslog.lo ../../../src/log/ModSyslog.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModSyslog.lo -MD -MP -MF .deps/ModSyslog.Tpo -c ../../../src/log/ModSyslog.cc -fPIC -DPIC -o .libs/ModSyslog.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModSyslog.lo -MD -MP -MF .deps/ModSyslog.Tpo -c ../../../src/log/ModSyslog.cc -o ModSyslog.o >/dev/null 2>&1
mv -f .deps/ModSyslog.Tpo .deps/ModSyslog.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModUdp.lo -MD -MP -MF .deps/ModUdp.Tpo -c -o ModUdp.lo ../../../src/log/ModUdp.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModUdp.lo -MD -MP -MF .deps/ModUdp.Tpo -c ../../../src/log/ModUdp.cc -fPIC -DPIC -o .libs/ModUdp.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ModUdp.lo -MD -MP -MF .deps/ModUdp.Tpo -c ../../../src/log/ModUdp.cc -o ModUdp.o >/dev/null 2>&1
mv -f .deps/ModUdp.Tpo .deps/ModUdp.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT CustomLog.lo -MD -MP -MF .deps/CustomLog.Tpo -c -o CustomLog.lo ../../../src/log/CustomLog.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT CustomLog.lo -MD -MP -MF .deps/CustomLog.Tpo -c ../../../src/log/CustomLog.cc -fPIC -DPIC -o .libs/CustomLog.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT CustomLog.lo -MD -MP -MF .deps/CustomLog.Tpo -c ../../../src/log/CustomLog.cc -o CustomLog.o >/dev/null 2>&1
mv -f .deps/CustomLog.Tpo .deps/CustomLog.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT TcpLogger.lo -MD -MP -MF .deps/TcpLogger.Tpo -c -o TcpLogger.lo ../../../src/log/TcpLogger.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT TcpLogger.lo -MD -MP -MF .deps/TcpLogger.Tpo -c ../../../src/log/TcpLogger.cc -fPIC -DPIC -o .libs/TcpLogger.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT TcpLogger.lo -MD -MP -MF .deps/TcpLogger.Tpo -c ../../../src/log/TcpLogger.cc -o TcpLogger.o >/dev/null 2>&1
mv -f .deps/TcpLogger.Tpo .deps/TcpLogger.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=link ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -g -lpthread -o liblog.la access_log.lo Config.lo File.lo FormatHttpdCombined.lo FormatHttpdCommon.lo FormatSquidCustom.lo FormatSquidIcap.lo FormatSquidNative.lo FormatSquidReferer.lo FormatSquidUseragent.lo ModDaemon.lo ModStdio.lo ModSyslog.lo ModUdp.lo CustomLog.lo TcpLogger.lo
libtool: link: /usr/bin/ar cru .libs/liblog.a .libs/access_log.o .libs/Config.o .libs/File.o .libs/FormatHttpdCombined.o .libs/FormatHttpdCommon.o .libs/FormatSquidCustom.o .libs/FormatSquidIcap.o .libs/FormatSquidNative.o .libs/FormatSquidReferer.o .libs/FormatSquidUseragent.o .libs/ModDaemon.o .libs/ModStdio.o .libs/ModSyslog.o .libs/ModUdp.o .libs/CustomLog.o .libs/TcpLogger.o
libtool: link: ranlib .libs/liblog.a
libtool: link: ( cd ".libs" && rm -f "liblog.la" && ln -s "../liblog.la" "liblog.la" )
Making all in ipc
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT AtomicWord.lo -MD -MP -MF .deps/AtomicWord.Tpo -c -o AtomicWord.lo ../../../src/ipc/AtomicWord.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT AtomicWord.lo -MD -MP -MF .deps/AtomicWord.Tpo -c ../../../src/ipc/AtomicWord.cc -fPIC -DPIC -o .libs/AtomicWord.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT AtomicWord.lo -MD -MP -MF .deps/AtomicWord.Tpo -c ../../../src/ipc/AtomicWord.cc -o AtomicWord.o >/dev/null 2>&1
mv -f .deps/AtomicWord.Tpo .deps/AtomicWord.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FdNotes.lo -MD -MP -MF .deps/FdNotes.Tpo -c -o FdNotes.lo ../../../src/ipc/FdNotes.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FdNotes.lo -MD -MP -MF .deps/FdNotes.Tpo -c ../../../src/ipc/FdNotes.cc -fPIC -DPIC -o .libs/FdNotes.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT FdNotes.lo -MD -MP -MF .deps/FdNotes.Tpo -c ../../../src/ipc/FdNotes.cc -o FdNotes.o >/dev/null 2>&1
mv -f .deps/FdNotes.Tpo .deps/FdNotes.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Kid.lo -MD -MP -MF .deps/Kid.Tpo -c -o Kid.lo ../../../src/ipc/Kid.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Kid.lo -MD -MP -MF .deps/Kid.Tpo -c ../../../src/ipc/Kid.cc -fPIC -DPIC -o .libs/Kid.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Kid.lo -MD -MP -MF .deps/Kid.Tpo -c ../../../src/ipc/Kid.cc -o Kid.o >/dev/null 2>&1
mv -f .deps/Kid.Tpo .deps/Kid.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Kids.lo -MD -MP -MF .deps/Kids.Tpo -c -o Kids.lo ../../../src/ipc/Kids.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Kids.lo -MD -MP -MF .deps/Kids.Tpo -c ../../../src/ipc/Kids.cc -fPIC -DPIC -o .libs/Kids.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Kids.lo -MD -MP -MF .deps/Kids.Tpo -c ../../../src/ipc/Kids.cc -o Kids.o >/dev/null 2>&1
mv -f .deps/Kids.Tpo .deps/Kids.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT MemMap.lo -MD -MP -MF .deps/MemMap.Tpo -c -o MemMap.lo ../../../src/ipc/MemMap.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT MemMap.lo -MD -MP -MF .deps/MemMap.Tpo -c ../../../src/ipc/MemMap.cc -fPIC -DPIC -o .libs/MemMap.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT MemMap.lo -MD -MP -MF .deps/MemMap.Tpo -c ../../../src/ipc/MemMap.cc -o MemMap.o >/dev/null 2>&1
mv -f .deps/MemMap.Tpo .deps/MemMap.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Queue.lo -MD -MP -MF .deps/Queue.Tpo -c -o Queue.lo ../../../src/ipc/Queue.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Queue.lo -MD -MP -MF .deps/Queue.Tpo -c ../../../src/ipc/Queue.cc -fPIC -DPIC -o .libs/Queue.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT Queue.lo -MD -MP -MF .deps/Queue.Tpo -c ../../../src/ipc/Queue.cc -o Queue.o >/dev/null 2>&1
mv -f .deps/Queue.Tpo .deps/Queue.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ReadWriteLock.lo -MD -MP -MF .deps/ReadWriteLock.Tpo -c -o ReadWriteLock.lo ../../../src/ipc/ReadWriteLock.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ReadWriteLock.lo -MD -MP -MF .deps/ReadWriteLock.Tpo -c ../../../src/ipc/ReadWriteLock.cc -fPIC -DPIC -o .libs/ReadWriteLock.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT ReadWriteLock.lo -MD -MP -MF .deps/ReadWriteLock.Tpo -c ../../../src/ipc/ReadWriteLock.cc -o ReadWriteLock.o >/dev/null 2>&1
mv -f .deps/ReadWriteLock.Tpo .deps/ReadWriteLock.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StartListening.lo -MD -MP -MF .deps/StartListening.Tpo -c -o StartListening.lo ../../../src/ipc/StartListening.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StartListening.lo -MD -MP -MF .deps/StartListening.Tpo -c ../../../src/ipc/StartListening.cc -fPIC -DPIC -o .libs/StartListening.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StartListening.lo -MD -MP -MF .deps/StartListening.Tpo -c ../../../src/ipc/StartListening.cc -o StartListening.o >/dev/null 2>&1
mv -f .deps/StartListening.Tpo .deps/StartListening.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StoreMap.lo -MD -MP -MF .deps/StoreMap.Tpo -c -o StoreMap.lo ../../../src/ipc/StoreMap.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StoreMap.lo -MD -MP -MF .deps/StoreMap.Tpo -c ../../../src/ipc/StoreMap.cc -fPIC -DPIC -o .libs/StoreMap.o
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StoreMap.lo -MD -MP -MF .deps/StoreMap.Tpo -c ../../../src/ipc/StoreMap.cc -o StoreMap.o >/dev/null 2>&1
mv -f .deps/StoreMap.Tpo .deps/StoreMap.Plo
/usr/local/bin/bash ../../libtool --tag=CXX --mode=compile ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StrandCoord.lo -MD -MP -MF .deps/StrandCoord.Tpo -c -o StrandCoord.lo ../../../src/ipc/StrandCoord.cc
libtool: compile: ccache g++ -DHAVE_CONFIG_H -DDEFAULT_STATEDIR=\"<http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid\"> -I../../.. -I../../../include -I../../../lib -I../../../src -I../../include -I/usr/local/include -I/usr/include/kerberosV -I/usr/include/kerberosV -I../../../libltdl -I/usr/include/kerberosV -I/usr/include/kerberosV -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -march=native -MT StrandCoord.lo -MD -MP -MF .deps/StrandCoord.Tpo -c ../../../src/ipc/StrandCoord.cc -fPIC -DPIC -o .libs/StrandCoord.o
In file included from ../../../src/ipc/TypedMsgHdr.h:15,
                 from ../../../src/ipc/StrandCoord.cc:11:
/usr/include/sys/uio.h:51: error: redefinition of 'struct iovec'
../../../compat/cmsg.h:64: error: previous definition of 'struct iovec'
*** Error 1 in squid-3.HEAD-BZR/_build/src/ipc (Makefile:809 'StrandCoord.lo')
*** Error 1 in squid-3.HEAD-BZR/_build/src (Makefile:7060 'all-recursive')
*** Error 1 in squid-3.HEAD-BZR/_build/src (Makefile:5951 'all')
*** Error 1 in squid-3.HEAD-BZR/_build (Makefile:558 'all-recursive')
*** Error 1 in <http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default> (Makefile:784 'distcheck')
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
configure: BUILD EXTRA C FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Wshadow -Werror -pipe -D_REENTRANT
configure: BUILD C++ FLAGS: -g -O2 -march=native
configure: BUILD EXTRA C++ FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT
configure: BUILD LIBRARIES:
configure: BUILD EXTRA LIBRARIES: -lm
configure: BUILD OBJECTS:
configure: BUILD EXTRA OBJECTS:
configure: BUILD C FLAGS: -Wall
configure: BUILD EXTRA C FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Wshadow -Werror -pipe -D_REENTRANT
configure: BUILD C++ FLAGS: -g -O2 -march=native
configure: BUILD EXTRA C++ FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT
/usr/include/sys/uio.h:51: error: redefinition of 'struct iovec'
../../../compat/cmsg.h:64: error: previous definition of 'struct iovec'
*** Error 1 in squid-3.HEAD-BZR/_build/src/ipc (Makefile:809 'StrandCoord.lo')
*** Error 1 in squid-3.HEAD-BZR/_build/src (Makefile:7060 'all-recursive')
*** Error 1 in squid-3.HEAD-BZR/_build/src (Makefile:5951 'all')
*** Error 1 in squid-3.HEAD-BZR/_build (Makefile:558 'all-recursive')
*** Error 1 in <http://build.squid-cache.org/job/3.HEAD-amd64-OpenBSD-5.4/ws/btlayer-00-default> (Makefile:784 'distcheck')
Build FAILED.
Build step 'Execute shell' marked build as failure
Received on Tue Mar 11 2014 - 15:13:31 MDT

This archive was generated by hypermail 2.2.0 : Wed Mar 12 2014 - 12:00:15 MDT