From owner-svn-ports-all@FreeBSD.ORG Fri Dec 27 10:24:43 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCB4A58D; Fri, 27 Dec 2013 10:24:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B93E51325; Fri, 27 Dec 2013 10:24:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBRAOhLG076224; Fri, 27 Dec 2013 10:24:43 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBRAOhnU076222; Fri, 27 Dec 2013 10:24:43 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201312271024.rBRAOhnU076222@svn.freebsd.org> From: Alex Dupre Date: Fri, 27 Dec 2013 10:24:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337692 - in head/lang: php5 php55 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Dec 2013 10:24:43 -0000 Author: ale Date: Fri Dec 27 10:24:43 2013 New Revision: 337692 URL: http://svnweb.freebsd.org/changeset/ports/337692 Log: Fix build of ldap module when sasl is enabled and LOCALBASE is not /usr/local. PR: ports/185151 Submitted by: Erick Turnquist Modified: head/lang/php5/Makefile.ext head/lang/php55/Makefile.ext Modified: head/lang/php5/Makefile.ext ============================================================================== --- head/lang/php5/Makefile.ext Fri Dec 27 10:24:34 2013 (r337691) +++ head/lang/php5/Makefile.ext Fri Dec 27 10:24:43 2013 (r337692) @@ -160,7 +160,7 @@ CONFIGURE_ARGS+=--with-ldap=${LOCALBASE} USE_OPENLDAP= yes . ifdef(WANT_OPENLDAP_SASL) -CONFIGURE_ARGS+=--with-ldap-sasl +CONFIGURE_ARGS+=--with-ldap-sasl=${LOCALBASE} . endif .endif Modified: head/lang/php55/Makefile.ext ============================================================================== --- head/lang/php55/Makefile.ext Fri Dec 27 10:24:34 2013 (r337691) +++ head/lang/php55/Makefile.ext Fri Dec 27 10:24:43 2013 (r337692) @@ -160,7 +160,7 @@ CONFIGURE_ARGS+=--with-ldap=${LOCALBASE} USE_OPENLDAP= yes . ifdef(WANT_OPENLDAP_SASL) -CONFIGURE_ARGS+=--with-ldap-sasl +CONFIGURE_ARGS+=--with-ldap-sasl=${LOCALBASE} . endif .endif