------------------------------------------------------------ revno: 11806 revision-id: squid3@treenet.co.nz-20130426040834-koafyookpivlitck parent: squid3@treenet.co.nz-20130426040648-s73lt0mx9i579lnj fixes bug(s): http://bugs.squid-cache.org/show_bug.cgi?id=3822 author: Stuart Henderson committer: Amos Jeffries branch nick: 3.2 timestamp: Thu 2013-04-25 22:08:34 -0600 message: Bug 3822: Locate LDAP and SASL headers in /usr/local/include for BSD support ------------------------------------------------------------ # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: squid3@treenet.co.nz-20130426040834-koafyookpivlitck # target_branch: http://bzr.squid-cache.org/bzr/squid3/branches\ # /SQUID_3_2 # testament_sha1: d2c740f9abea6cdb6f0ce02b4d67573f8d773f87 # timestamp: 2013-04-26 04:14:13 +0000 # source_branch: http://bzr.squid-cache.org/bzr/squid3/branches\ # /SQUID_3_2 # base_revision_id: squid3@treenet.co.nz-20130426040648-\ # s73lt0mx9i579lnj # # Begin patch === modified file 'helpers/basic_auth/LDAP/config.test' --- helpers/basic_auth/LDAP/config.test 2006-04-25 03:37:28 +0000 +++ helpers/basic_auth/LDAP/config.test 2013-04-26 04:08:34 +0000 @@ -1,5 +1,5 @@ #!/bin/sh -if [ -f /usr/include/ldap.h ]; then +if [ -f /usr/include/ldap.h -o -f /usr/local/include/ldap.h ]; then exit 0 fi if [ -f /usr/include/winldap.h ]; then === modified file 'helpers/basic_auth/SASL/config.test' --- helpers/basic_auth/SASL/config.test 2011-07-31 12:37:27 +0000 +++ helpers/basic_auth/SASL/config.test 2013-04-26 04:08:34 +0000 @@ -1,8 +1,8 @@ #!/bin/sh -if [ -f /usr/include/sasl.h ]; then +if [ -f /usr/include/sasl.h -o -f /usr/local/include/sasl.h ]; then exit 0 fi -if [ -f /usr/include/sasl/sasl.h ]; then +if [ -f /usr/include/sasl/sasl.h -o -f /usr/local/include/sasl/sasl.h ]; then exit 0 fi exit 1 === modified file 'helpers/digest_auth/LDAP/config.test' --- helpers/digest_auth/LDAP/config.test 2006-04-25 03:37:28 +0000 +++ helpers/digest_auth/LDAP/config.test 2013-04-26 04:08:34 +0000 @@ -1,5 +1,5 @@ #!/bin/sh -if [ -f /usr/include/ldap.h ]; then +if [ -f /usr/include/ldap.h -o -f /usr/local/include/ldap.h ]; then exit 0 fi if [ -f /usr/include/winldap.h ]; then === modified file 'helpers/digest_auth/eDirectory/config.test' --- helpers/digest_auth/eDirectory/config.test 2007-06-24 02:50:10 +0000 +++ helpers/digest_auth/eDirectory/config.test 2013-04-26 04:08:34 +0000 @@ -1,5 +1,5 @@ #!/bin/sh -if [ -f /usr/include/ldap.h ]; then +if [ -f /usr/include/ldap.h -o -f /usr/local/include/ldap.h ]; then exit 0 fi if [ -f /usr/include/winldap.h ]; then === modified file 'helpers/external_acl/LDAP_group/config.test' --- helpers/external_acl/LDAP_group/config.test 2006-04-25 03:37:28 +0000 +++ helpers/external_acl/LDAP_group/config.test 2013-04-26 04:08:34 +0000 @@ -1,5 +1,5 @@ #!/bin/sh -if [ -f /usr/include/ldap.h ]; then +if [ -f /usr/include/ldap.h -o -f /usr/local/include/ldap.h ]; then exit 0 fi if [ -f /usr/include/winldap.h ]; then === modified file 'helpers/external_acl/eDirectory_userip/config.test' --- helpers/external_acl/eDirectory_userip/config.test 2010-11-03 06:21:49 +0000 +++ helpers/external_acl/eDirectory_userip/config.test 2013-04-26 04:08:34 +0000 @@ -1,6 +1,6 @@ #!/bin/sh -if [ -f /usr/include/ldap.h ]; then +if [ -f /usr/include/ldap.h -o -f /usr/local/include/ldap.h ]; then exit 0 fi if [ -f /usr/include/winldap.h ]; then