From: <abe...@us...> - 2013-05-22 18:05:00
|
Revision: 6097 http://sourceforge.net/p/astlinux/code/6097 Author: abelbeck Date: 2013-05-22 18:04:57 +0000 (Wed, 22 May 2013) Log Message: ----------- php, enable LDAP support if BR2_PACKAGE_OPENLDAP=y Modified Paths: -------------- branches/1.0/package/php/php.mk Modified: branches/1.0/package/php/php.mk =================================================================== --- branches/1.0/package/php/php.mk 2013-05-21 15:54:24 UTC (rev 6096) +++ branches/1.0/package/php/php.mk 2013-05-22 18:04:57 UTC (rev 6097) @@ -175,6 +175,12 @@ endif endif +### LDAP +ifeq ($(BR2_PACKAGE_OPENLDAP),y) + PHP_CONF_OPT += --with-ldap=$(STAGING_DIR)/usr + PHP_DEPENDENCIES += openldap +endif + # Fixup prefix= and exec_prefix= in php-config define PHP_FIXUP_PHP_CONFIG $(SED) 's%^prefix="/usr"%prefix="$(STAGING_DIR)/usr"%' \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |