Date: Fri, 27 Dec 2013 10:24:43 +0000 (UTC) From: Alex Dupre <ale@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337692 - in head/lang: php5 php55 Message-ID: <201312271024.rBRAOhnU076222@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <jhujhiti@adjectivism.org> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312271024.rBRAOhnU076222>