See <http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/58/changes>
Changes: [Christos Tsantilas] author: Alex Rousskov <[email protected]> cache_peer standby=N implementation. The feature focus is to instantly provide a ready-to-use connection to a cooperating cache peer, virtually at all times. This is useful when connection establishment is "too slow" and/or when infrequent peer use prevents Squid from combating slow connection establishment with the regular idle connection pool. The feature is similar to Squid2 idle=N feature, but there are key differences: * Standby connections are available virtually at all times, while Squid2 unused "idle" connections are available only for a short time after a peer request. * All N standby connections are not opened at once, reducing the chance of the feature being mistaken for a DoS attack on a peer. * More consistent support for peers with multiple IP addresses (peer IPs are cycled through, just like during regular Squid request forwarding). Besides, "idle" is a poor choice of adjective for an unused connection pool name because the same term is used for used persistent connections, which have somewhat different properties, are stored in a different pool, may need distinct set of tuning options, etc. It is better to use a dedicated term for the new feature. The relationship between the max-conn limit and standby/idle connections is a complex one. After several rewrites and tests, Squid now obeys max-conn limit when opening new standby connections and accounts for standby connections when checking whether to allow peer use. This often works OK, but leads to standby guarantee violations when non-standby connections approach the limit. The alternative design where standby code ignores max-conn works better, but is really difficult to explain and advocate because an admin expects max-conn to cover all connections and because of the idle connections accounting and maintenance bugs. We may come back to this when the idle connections code is fixed. Fixed max-conn documentation and XXXed a peerHTTPOkay() bug (now in peerHasConnAvailable()) that results in max-conn limit preventing the use of a peer with idle persistent connections. Decided to use standby connections for non-retriable requests. Avoiding standby connections for POSTs and such would violate the main purpose of the feature: providing an instant ready-to-use connection. A user does not care whether it is waiting too long for a GET or POST request. Actually, a user may care more when their POST requests are delayed (because canceling and retrying them is often scary from the user point of view). The idea behind standby connections is that the admin is responsible for avoiding race conditions by properly configuring the peering Squids. If such proper configuration is not possible or the consequences of rare races (e.g., due to peer shutdown) are more severe than the consequences of slow requests, the admin should not use standby=N. This choice may become configurable in the future. TODO: Teach peer probing code to push successful probing connections into the standby pool (when enabled). Should be done as a followup project because of the differences in standby and probe connection opening code, especially when SSL peers are supported. Will require some discussion. A standby pool is using a full-blown PconnPool object for storage instead of the smaller IdleConnList, like the ICAP code does. The primary reasons for this design were: * A peer may have multiple addresses and those addresses may change. PconnPool has code to deal with multiple addresses while IdleConnList does not. I do not think this difference is really used in this implementation, but I did not want to face an unknown limitation. Note that ICAP does not support multiple ICAP server addresses. * PconnPool has reporting (and cache manager integration) code that we should eventually improve and report standby-specific stats. When this happens, PconnPool will probably become abstract and spawn two kids, one for pconn and one for standby pools. Seemingly unrelated changes triggered by standby=N addition: * Removed PconnPool from fde.h. We used to create immortal PconnPool objects. Now, standby pools are destroyed when their peer is destroyed. Sharing raw pointers to such pools is too dangerous. We could use smart pointers, but PconnPools do not really belong to such a low-level object like fde IMO. * Added FwdState::closeServerConnection() to encapsulate server connection closing code, including the new noteUses() maintenance. Also updated FwdState::serverClosed() to do the same maintenance. * Close all connections in IdleConnList upon deletion. The old code did not care because we never deleted PconnPools (although I am not sure there were no bugs related to ICAP service pools which use IdleConnList directly and do get destroyed). * Fixed PconnPool::dumpHash(). It was listing the first entry twice because the code misused misnamed hash_next(). * Removed unnecessary hard-coded limit on the number of PconnPools. Use std::set for their storage. * Fixed very stale PconnPool::pop() documentation and polished its code. * Added RegisteredRunner::sync() method to use during Squid reconfiguration: The existing run() method and destructor are great for the initial configuration and final shutdown, but do not work well for reconfiguration when you do not want to completely destroy and then recreate the state. The sync() method (called via SyncRegistered) can be used for that. Eventually, the reconfiguration API should present the old "saved" config and the new "current" config to RegisteredRunners so that they can update their modules/features intelligently. For now, they just see the new config. This is a Measurement Factory project ------------------------------------------ [...truncated 3566 lines...] --- basic_ncsa_auth.o --- --- crypt_md5.o --- --- basic_ncsa_auth.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../helpers/basic_auth/NCSA -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT basic_ncsa_auth.o -MD -MP -MF .deps/basic_ncsa_auth.Tpo -c -o basic_ncsa_auth.o ../../../../helpers/basic_auth/NCSA/basic_ncsa_auth.cc --- crypt_md5.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../helpers/basic_auth/NCSA -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT crypt_md5.o -MD -MP -MF .deps/crypt_md5.Tpo -c -o crypt_md5.o ../../../../helpers/basic_auth/NCSA/crypt_md5.cc mv -f .deps/crypt_md5.Tpo .deps/crypt_md5.Po --- basic_ncsa_auth.o --- mv -f .deps/basic_ncsa_auth.Tpo .deps/basic_ncsa_auth.Po --- basic_ncsa_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o basic_ncsa_auth basic_ncsa_auth.o crypt_md5.o ../../../lib/libmisccontainers.la ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lnettle -lcrypt -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o basic_ncsa_auth basic_ncsa_auth.o crypt_md5.o -L/usr/local/lib ../../../lib/.libs/libmisccontainers.a ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lnettle -lcrypt -lm -pthread Making all in PAM --- basic_pam_auth.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT basic_pam_auth.o -MD -MP -MF .deps/basic_pam_auth.Tpo -c -o basic_pam_auth.o ../../../../helpers/basic_auth/PAM/basic_pam_auth.cc mv -f .deps/basic_pam_auth.Tpo .deps/basic_pam_auth.Po --- basic_pam_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o basic_pam_auth basic_pam_auth.o ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lpam -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o basic_pam_auth basic_pam_auth.o -L/usr/local/lib ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lpam -lm -pthread Making all in POP3 --- basic_pop3_auth --- sed -e 's,[@]PERL[@],/usr/bin/perl,g' <../../../../helpers/basic_auth/POP3/basic_pop3_auth.pl.in >basic_pop3_auth || (/bin/rm -f -f basic_pop3_auth ; exit 1) Making all in RADIUS --- basic_radius_auth.o --- --- radius-util.o --- --- basic_radius_auth.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../helpers/basic_auth/RADIUS -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT basic_radius_auth.o -MD -MP -MF .deps/basic_radius_auth.Tpo -c -o basic_radius_auth.o ../../../../helpers/basic_auth/RADIUS/basic_radius_auth.cc --- radius-util.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../helpers/basic_auth/RADIUS -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT radius-util.o -MD -MP -MF .deps/radius-util.Tpo -c -o radius-util.o ../../../../helpers/basic_auth/RADIUS/radius-util.cc mv -f .deps/radius-util.Tpo .deps/radius-util.Po --- basic_radius_auth.o --- mv -f .deps/basic_radius_auth.Tpo .deps/basic_radius_auth.Po --- basic_radius_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o basic_radius_auth basic_radius_auth.o radius-util.o ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lnettle -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o basic_radius_auth basic_radius_auth.o radius-util.o -L/usr/local/lib ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lnettle -lm -pthread Making all in SMB --- basic_smb_auth-basic_smb_auth.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -DHELPERSCRIPT=\"/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/libexec/basic_smb_auth.sh\"> -g -O2 -I/usr/local/include -MT basic_smb_auth-basic_smb_auth.o -MD -MP -MF .deps/basic_smb_auth-basic_smb_auth.Tpo -c -o basic_smb_auth-basic_smb_auth.o `test -f 'basic_smb_auth.cc' || echo '../../../../helpers/basic_auth/SMB/'`basic_smb_auth.cc mv -f .deps/basic_smb_auth-basic_smb_auth.Tpo .deps/basic_smb_auth-basic_smb_auth.Po --- basic_smb_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -DHELPERSCRIPT=\"/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/libexec/basic_smb_auth.sh\"> -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o basic_smb_auth basic_smb_auth-basic_smb_auth.o ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lm libtool: link: /usr/local/bin/ccache g++ -DHELPERSCRIPT=\"/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/libexec/basic_smb_auth.sh\"> -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o basic_smb_auth basic_smb_auth-basic_smb_auth.o -L/usr/local/lib ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lm -pthread Making all in fake --- fake.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT fake.o -MD -MP -MF .deps/fake.Tpo -c -o fake.o ../../../../helpers/basic_auth/fake/fake.cc mv -f .deps/fake.Tpo .deps/fake.Po --- basic_fake_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o basic_fake_auth fake.o ../../../compat/libcompat-squid.la libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o basic_fake_auth fake.o -L/usr/local/lib ../../../compat/.libs/libcompat-squid.a -pthread Making all in getpwnam --- basic_getpwnam_auth.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT basic_getpwnam_auth.o -MD -MP -MF .deps/basic_getpwnam_auth.Tpo -c -o basic_getpwnam_auth.o ../../../../helpers/basic_auth/getpwnam/basic_getpwnam_auth.cc mv -f .deps/basic_getpwnam_auth.Tpo .deps/basic_getpwnam_auth.Po --- basic_getpwnam_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o basic_getpwnam_auth basic_getpwnam_auth.o ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lcrypt libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o basic_getpwnam_auth basic_getpwnam_auth.o -L/usr/local/lib ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lcrypt -pthread Making all in digest_auth --- all-recursive --- Making all in file --- digest_file_auth.o --- --- text_backend.o --- --- digest_file_auth.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../helpers/digest_auth/file -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT digest_file_auth.o -MD -MP -MF .deps/digest_file_auth.Tpo -c -o digest_file_auth.o ../../../../helpers/digest_auth/file/digest_file_auth.cc --- text_backend.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../helpers/digest_auth/file -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT text_backend.o -MD -MP -MF .deps/text_backend.Tpo -c -o text_backend.o ../../../../helpers/digest_auth/file/text_backend.cc --- digest_file_auth.o --- mv -f .deps/digest_file_auth.Tpo .deps/digest_file_auth.Po --- text_backend.o --- mv -f .deps/text_backend.Tpo .deps/text_backend.Po --- digest_file_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o digest_file_auth digest_file_auth.o text_backend.o ../../../lib/libmisccontainers.la ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lnettle -lcrypt -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o digest_file_auth digest_file_auth.o text_backend.o -L/usr/local/lib ../../../lib/.libs/libmisccontainers.a ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lnettle -lcrypt -lm -pthread Making all in external_acl --- all-recursive --- Making all in SQL_session --- ext_sql_session_acl --- sed -e 's,[@]PERL[@],/usr/bin/perl,g' <../../../../helpers/external_acl/SQL_session/ext_sql_session_acl.pl.in >ext_sql_session_acl || (/bin/rm -f -f ext_sql_session_acl ; exit 1) --- ext_sql_session_acl.8 --- pod2man ext_sql_session_acl ext_sql_session_acl.8 Making all in file_userip --- ext_file_userip_acl.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT ext_file_userip_acl.o -MD -MP -MF .deps/ext_file_userip_acl.Tpo -c -o ext_file_userip_acl.o ../../../../helpers/external_acl/file_userip/ext_file_userip_acl.cc mv -f .deps/ext_file_userip_acl.Tpo .deps/ext_file_userip_acl.Po --- ext_file_userip_acl --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o ext_file_userip_acl ext_file_userip_acl.o ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o ext_file_userip_acl ext_file_userip_acl.o -L/usr/local/lib ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lm -pthread Making all in time_quota --- ext_time_quota_acl.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -DDEFAULT_QUOTA_DB=\"/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/ext_time_quota.db\"> -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT ext_time_quota_acl.o -MD -MP -MF .deps/ext_time_quota_acl.Tpo -c -o ext_time_quota_acl.o ../../../../helpers/external_acl/time_quota/ext_time_quota_acl.cc mv -f .deps/ext_time_quota_acl.Tpo .deps/ext_time_quota_acl.Po --- ext_time_quota_acl --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o ext_time_quota_acl ext_time_quota_acl.o ../../../compat/libcompat-squid.la libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o ext_time_quota_acl ext_time_quota_acl.o -L/usr/local/lib ../../../compat/.libs/libcompat-squid.a -pthread Making all in unix_group --- check_group.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT check_group.o -MD -MP -MF .deps/check_group.Tpo -c -o check_group.o ../../../../helpers/external_acl/unix_group/check_group.cc mv -f .deps/check_group.Tpo .deps/check_group.Po --- ext_unix_group_acl --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o ext_unix_group_acl check_group.o ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o ext_unix_group_acl check_group.o -L/usr/local/lib ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lm -pthread Making all in wbinfo_group --- ext_wbinfo_group_acl --- sed -e 's,[@]PERL[@],/usr/bin/perl,g' <../../../../helpers/external_acl/wbinfo_group/ext_wbinfo_group_acl.pl.in >ext_wbinfo_group_acl || (/bin/rm -f -f ext_wbinfo_group_acl ; exit 1) Making all in log_daemon --- all-recursive --- Making all in DB --- log_db_daemon --- sed -e 's,[@]PERL[@],/usr/bin/perl,g' <../../../../helpers/log_daemon/DB/log_db_daemon.pl.in >log_db_daemon || (/bin/rm -f -f log_db_daemon ; exit 1) --- log_db_daemon.8 --- pod2man log_db_daemon log_db_daemon.8 Making all in file --- log_file_daemon.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT log_file_daemon.o -MD -MP -MF .deps/log_file_daemon.Tpo -c -o log_file_daemon.o ../../../../helpers/log_daemon/file/log_file_daemon.cc mv -f .deps/log_file_daemon.Tpo .deps/log_file_daemon.Po --- log_file_daemon --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o log_file_daemon log_file_daemon.o -L../../../lib ../../../compat/libcompat-squid.la -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o log_file_daemon log_file_daemon.o -L/usr/local/lib -L../../../lib ../../../compat/.libs/libcompat-squid.a -lm -pthread Making all in negotiate_auth --- all-recursive --- Making all in kerberos --- all-recursive --- --- negotiate_kerberos_auth.o --- --- negotiate_kerberos_pac.o --- --- negotiate_kerberos_auth.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../helpers/negotiate_auth/kerberos -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT negotiate_kerberos_auth.o -MD -MP -MF .deps/negotiate_kerberos_auth.Tpo -c -o negotiate_kerberos_auth.o ../../../../helpers/negotiate_auth/kerberos/negotiate_kerberos_auth.cc --- negotiate_kerberos_pac.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../helpers/negotiate_auth/kerberos -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT negotiate_kerberos_pac.o -MD -MP -MF .deps/negotiate_kerberos_pac.Tpo -c -o negotiate_kerberos_pac.o ../../../../helpers/negotiate_auth/kerberos/negotiate_kerberos_pac.cc --- negotiate_kerberos_auth.o --- mv -f .deps/negotiate_kerberos_auth.Tpo .deps/negotiate_kerberos_auth.Po --- negotiate_kerberos_auth_test.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../helpers/negotiate_auth/kerberos -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT negotiate_kerberos_auth_test.o -MD -MP -MF .deps/negotiate_kerberos_auth_test.Tpo -c -o negotiate_kerberos_auth_test.o ../../../../helpers/negotiate_auth/kerberos/negotiate_kerberos_auth_test.cc mv -f .deps/negotiate_kerberos_auth_test.Tpo .deps/negotiate_kerberos_auth_test.Po --- negotiate_kerberos_auth_test --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o negotiate_kerberos_auth_test negotiate_kerberos_auth_test.o ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lnettle -L/usr/lib -lgssapi -lheimntlm -lkrb5 -lhx509 -lcom_err -lcrypto -lasn1 -lwind -lheimbase -lroken -lcrypt -pthread -L/usr/lib -lkrb5 -lhx509 -lcom_err -lcrypto -lasn1 -lwind -lheimbase -lroken -lcrypt -pthread -lm --- negotiate_kerberos_pac.o --- mv -f .deps/negotiate_kerberos_pac.Tpo .deps/negotiate_kerberos_pac.Po --- negotiate_kerberos_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o negotiate_kerberos_auth negotiate_kerberos_auth.o negotiate_kerberos_pac.o ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lnettle -L/usr/lib -lgssapi -lheimntlm -lkrb5 -lhx509 -lcom_err -lcrypto -lasn1 -lwind -lheimbase -lroken -lcrypt -pthread -L/usr/lib -lkrb5 -lhx509 -lcom_err -lcrypto -lasn1 -lwind -lheimbase -lroken -lcrypt -pthread -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o negotiate_kerberos_auth negotiate_kerberos_auth.o negotiate_kerberos_pac.o -pthread -pthread -L/usr/local/lib ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lnettle -L/usr/lib -lgssapi -lheimntlm -lkrb5 -lhx509 -lcom_err -lcrypto -lasn1 -lwind -lheimbase -lroken -lcrypt -lm -pthread --- negotiate_kerberos_auth_test --- libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o negotiate_kerberos_auth_test negotiate_kerberos_auth_test.o -pthread -pthread -L/usr/local/lib ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lnettle -L/usr/lib -lgssapi -lheimntlm -lkrb5 -lhx509 -lcom_err -lcrypto -lasn1 -lwind -lheimbase -lroken -lcrypt -lm -pthread Making all in wrapper --- negotiate_wrapper.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT negotiate_wrapper.o -MD -MP -MF .deps/negotiate_wrapper.Tpo -c -o negotiate_wrapper.o ../../../../helpers/negotiate_auth/wrapper/negotiate_wrapper.cc mv -f .deps/negotiate_wrapper.Tpo .deps/negotiate_wrapper.Po --- negotiate_wrapper_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o negotiate_wrapper_auth negotiate_wrapper.o ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lnettle -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o negotiate_wrapper_auth negotiate_wrapper.o -L/usr/local/lib ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lnettle -lm -pthread Making all in url_rewrite --- all-recursive --- Making all in fake --- fake.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT fake.o -MD -MP -MF .deps/fake.Tpo -c -o fake.o ../../../../helpers/url_rewrite/fake/fake.cc mv -f .deps/fake.Tpo .deps/fake.Po --- url_fake_rewrite --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o url_fake_rewrite fake.o ../../../compat/libcompat-squid.la libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o url_fake_rewrite fake.o -L/usr/local/lib ../../../compat/.libs/libcompat-squid.a -pthread Making all in storeid_rewrite --- all-recursive --- Making all in file --- storeid_file_rewrite --- sed -e 's,[@]PERL[@],/usr/bin/perl,g' <../../../../helpers/storeid_rewrite/file/storeid_file_rewrite.pl.in >storeid_file_rewrite || (/bin/rm -f -f storeid_file_rewrite ; exit 1) --- storeid_file_rewrite.8 --- pod2man storeid_file_rewrite storeid_file_rewrite.8 Making all in ntlm_auth --- all-recursive --- Making all in fake --- ntlm_fake_auth.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../lib -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT ntlm_fake_auth.o -MD -MP -MF .deps/ntlm_fake_auth.Tpo -c -o ntlm_fake_auth.o ../../../../helpers/ntlm_auth/fake/ntlm_fake_auth.cc mv -f .deps/ntlm_fake_auth.Tpo .deps/ntlm_fake_auth.Po --- ntlm_fake_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o ntlm_fake_auth ntlm_fake_auth.o ../../../lib/ntlmauth/libntlmauth.la ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lnettle -lcrypt -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o ntlm_fake_auth ntlm_fake_auth.o -L/usr/local/lib ../../../lib/ntlmauth/.libs/libntlmauth.a ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lnettle -lcrypt -lm -pthread Making all in smb_lm --- ntlm_smb_lm_auth.o --- /usr/local/bin/ccache g++ -DHAVE_CONFIG_H -I../../../.. -I../../../../include -I../../../../lib -I../../../../src -I../../../include -I/usr/local/include -I/usr/include -I/usr/include -I../../../../libltdl -I../../../../lib -I/usr/include -I/usr/include -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -MT ntlm_smb_lm_auth.o -MD -MP -MF .deps/ntlm_smb_lm_auth.Tpo -c -o ntlm_smb_lm_auth.o ../../../../helpers/ntlm_auth/smb_lm/ntlm_smb_lm_auth.cc mv -f .deps/ntlm_smb_lm_auth.Tpo .deps/ntlm_smb_lm_auth.Po --- ntlm_smb_lm_auth --- /bin/sh ../../../libtool --tag=CXX --mode=link /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -L/usr/local/lib -Wl,-R/usr/local/lib -pthread -o ntlm_smb_lm_auth ntlm_smb_lm_auth.o ../../../lib/smblib/libsmblib.la ../../../lib/rfcnb/librfcnb.la ../../../lib/ntlmauth/libntlmauth.la ../../../lib/libmiscencoding.la ../../../compat/libcompat-squid.la -lnettle -lcrypt -lm libtool: link: /usr/local/bin/ccache g++ -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT -g -O2 -I/usr/local/include -g -Wl,-R/usr/local/lib -pthread -o ntlm_smb_lm_auth ntlm_smb_lm_auth.o -L/usr/local/lib ../../../lib/smblib/.libs/libsmblib.a ../../../lib/rfcnb/.libs/librfcnb.a ../../../lib/ntlmauth/.libs/libntlmauth.a ../../../lib/.libs/libmiscencoding.a ../../../compat/.libs/libcompat-squid.a -lnettle -lcrypt -lm -pthread Making all in src --- cf_gen_defines.cci --- --- err_type.cc --- --- cf_gen_defines.cci --- nawk -f ../../src/cf_gen_defines <../../src/cf.data.pre >cf_gen_defines.cci || (/bin/rm -f -f cf_gen_defines.cci && exit 1) --- err_type.cc --- nawk -f ../../src/mk-string-arrays.awk < ../../src/err_type.h > err_type.cc || (/bin/rm -f -f err_type.cc && exit 1) --- err_detail_type.cc --- nawk -f ../../src/mk-string-arrays.awk < ../../src/err_detail_type.h | sed 's/ERR_DETAIL_//' > err_detail_type.cc || (/bin/rm -f -f err_detail_type.cc && exit 1) --- globals.cc --- nawk -f ../../src/mk-globals-c.awk < ../../src/globals.h > globals.cc || (/bin/rm -f -f globals.cc && exit 1) --- hier_code.cc --- nawk -f ../../src/mk-string-arrays.awk < ../../src/hier_code.h > hier_code.cc || (/bin/rm -f -f hier_code.cc && exit 1) --- icp_opcode.cc --- nawk -f ../../src/mk-string-arrays.awk < ../../src/icp_opcode.h > icp_opcode.cc || (/bin/rm -f -f icp_opcode.cc && exit 1) --- LogTags.cc --- nawk -f ../../src/mk-string-arrays.awk < ../../src/LogTags.h | sed 's/LOG_//' > LogTags.cc || (/bin/rm -f -f LogTags.cc && exit 1) --- lookup_t.cc --- nawk -f ../../src/mk-string-arrays.awk < ../../src/lookup_t.h > lookup_t.cc || (/bin/rm -f -f lookup_t.cc && exit 1) --- cf_gen --- /usr/local/bin/ccache g++ -o cf_gen ../../src/cf_gen.cc -I../../src -I../include/ -I../src --- cf.data --- sed -e "s%[@]DEFAULT_HTTP_PORT[@]%3128%g" -e "s%[@]DEFAULT_ICP_PORT[@]%3130%g" -e "s%[@]DEFAULT_CACHE_EFFECTIVE_USER[@]%nobody%g" -e "s%[@]DEFAULT_MIME_TABLE[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc/mime.conf%g"> -e "s%[@]DEFAULT_SSL_CRTD[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/libexec/`echo> ssl_crtd | sed 's,x,x,;s/$//'`%g" -e "s%[@]DEFAULT_UNLINKD[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/libexec/`echo> unlinkd | sed 's,x,x,;s/$//'`%g" -e "s%[@]DEFAULT_PINGER[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/libexec/`echo> pinger | sed 's,x,x,;s/$//'`%g" -e "s%[@]DEFAULT_DISKD[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/libexec/`echo> diskd | sed 's,x,x,;s/$//'`%g" -e "s%[@]DEFAULT_LOGFILED[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/libexec/`echo> log_file_daemon | sed 's,x,x,;s/$//'`%g;" -e "s%[@]DEFAULT_CACHE_LOG[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/logs/cache.log%g"> -e "s%[@]DEFAULT_ACCESS_LOG[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/logs/access.log%g"> -e "s%[@]DEFAULT_STORE_LOG[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/logs/store.log%g"> -e "s%[@]DEFAULT_PID_FILE[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/run/squid.pid%g"> -e "s%[@]DEFAULT_NETDB_FILE[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/logs/netdb.state%g"> -e "s%[@]DEFAULT_SWAP_DIR[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/cache/squid%g"> -e "s%[@]DEFAULT_SSL_DB_DIR[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/var/lib/ssl_db%g"> -e "s%[@]DEFAULT_ICON_DIR[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share/icons%g"> -e "s%[@]DEFAULT_CONFIG_DIR[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/etc%g"> -e "s%[@]DEFAULT_ERROR_DIR[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst/share/errors%g"> -e "s%[@]DEFAULT_PREFIX[@]%/usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_inst%g"> -e "s%[@]DEFAULT_HOSTS[@]%/etc/hosts%g" -e "s%[@]SQUID[@]%SQUID\ 3.HEAD-BZR%g" < ../../src/cf.data.pre >cf.data --- repl_modules.cc --- /bin/sh ../../src/repl_modules.sh lru > repl_modules.cc --- cf_parser.cci --- ./cf_gen cf.data ../../src/cf.data.depend /usr/local/lib/compat/libstdc++.so.6: version GLIBCXX_3.4.15 required by /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src/cf_gen> not found *** [cf_parser.cci] Error code 1 make[2]: stopped in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src> 1 error make[2]: stopped in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_build/src> *** [all-recursive] Error code 1 make[1]: stopped in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_build> 1 error make[1]: stopped in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default/squid-3.HEAD-BZR/_build> *** [distcheck] Error code 1 make: stopped in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default> 1 error make: stopped in /usr<http://build.squid-cache.org/job/3.HEAD-amd64-FreeBSD-10/ws/btlayer-00-default> buildtest.sh result is 2 BUILD: .././test-suite/buildtests/layer-00-default.opts configure: BUILD LIBRARIES: configure: BUILD EXTRA LIBRARIES: -lm configure: BUILD OBJECTS: configure: BUILD EXTRA OBJECTS: configure: BUILD C FLAGS: -Wall -g -O2 -I/usr/local/include configure: BUILD EXTRA C FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -Wshadow -Werror -pipe -D_REENTRANT configure: BUILD C++ FLAGS: -g -O2 -I/usr/local/include configure: BUILD EXTRA C++ FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wcomments -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 -g -O2 -I/usr/local/include 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 -I/usr/local/include configure: BUILD EXTRA C++ FLAGS: -Wall -Wpointer-arith -Wwrite-strings -Wcomments -Wshadow -Werror -pipe -D_REENTRANT *** [cf_parser.cci] Error code 1 *** [all-recursive] Error code 1 *** [distcheck] Error code 1 Build FAILED. Build step 'Execute shell' marked build as failure
