2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2007-08-07 19:47:03 +02:00
|
|
|
#
|
|
|
|
# php
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2015-04-16 20:33:34 +02:00
|
|
|
PHP_VERSION = 5.6.8
|
2009-03-04 21:58:08 +01:00
|
|
|
PHP_SITE = http://www.php.net/distributions
|
2014-09-19 14:31:19 +02:00
|
|
|
PHP_SOURCE = php-$(PHP_VERSION).tar.xz
|
2009-03-04 21:58:08 +01:00
|
|
|
PHP_INSTALL_STAGING = YES
|
2014-09-27 21:32:41 +02:00
|
|
|
PHP_INSTALL_STAGING_OPTS = INSTALL_ROOT=$(STAGING_DIR) install
|
2014-09-27 21:32:40 +02:00
|
|
|
PHP_INSTALL_TARGET_OPTS = INSTALL_ROOT=$(TARGET_DIR) install
|
2013-12-16 13:28:07 +01:00
|
|
|
PHP_DEPENDENCIES = host-pkgconf
|
2012-09-04 06:07:38 +02:00
|
|
|
PHP_LICENSE = PHP
|
|
|
|
PHP_LICENSE_FILES = LICENSE
|
2014-12-24 08:54:24 +01:00
|
|
|
PHP_CONF_OPTS = \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--infodir=/usr/share/info \
|
|
|
|
--disable-all \
|
|
|
|
--without-pear \
|
|
|
|
--with-config-file-path=/etc \
|
|
|
|
--disable-rpath
|
2015-04-09 03:32:30 +02:00
|
|
|
PHP_CONF_ENV = \
|
|
|
|
ac_cv_func_strcasestr=yes \
|
|
|
|
EXTRA_LIBS="$(PHP_EXTRA_LIBS)"
|
2014-01-28 22:26:27 +01:00
|
|
|
|
2015-04-08 17:39:28 +02:00
|
|
|
# PHP can't be AUTORECONFed the standard way unfortunately
|
|
|
|
PHP_DEPENDENCIES += host-autoconf host-automake host-libtool
|
|
|
|
define PHP_BUILDCONF
|
2015-04-09 03:02:16 +02:00
|
|
|
cd $(@D) ; $(TARGET_MAKE_ENV) ./buildconf --force
|
2015-04-08 17:39:28 +02:00
|
|
|
endef
|
|
|
|
PHP_PRE_CONFIGURE_HOOKS += PHP_BUILDCONF
|
|
|
|
|
2013-10-24 00:44:13 +02:00
|
|
|
ifeq ($(BR2_ENDIAN),"BIG")
|
2014-01-28 22:26:27 +01:00
|
|
|
PHP_CONF_ENV += ac_cv_c_bigendian_php=yes
|
2013-10-24 00:44:13 +02:00
|
|
|
else
|
2014-01-28 22:26:27 +01:00
|
|
|
PHP_CONF_ENV += ac_cv_c_bigendian_php=no
|
2013-10-24 00:44:13 +02:00
|
|
|
endif
|
2013-02-07 13:35:05 +01:00
|
|
|
PHP_CONFIG_SCRIPTS = php-config
|
2007-08-07 19:47:03 +02:00
|
|
|
|
2011-01-02 12:28:35 +01:00
|
|
|
PHP_CFLAGS = $(TARGET_CFLAGS)
|
|
|
|
|
2015-04-08 17:39:29 +02:00
|
|
|
# The OPcache extension isn't cross-compile friendly
|
|
|
|
# Throw some defines here to avoid patching heavily
|
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_OPCACHE),y)
|
|
|
|
PHP_CONF_OPTS += --enable-opcache
|
|
|
|
PHP_CONF_ENV += ac_cv_func_mprotect=yes
|
|
|
|
PHP_CFLAGS += \
|
|
|
|
-DHAVE_SHM_IPC \
|
|
|
|
-DHAVE_SHM_MMAP_ANON \
|
|
|
|
-DHAVE_SHM_MMAP_ZERO \
|
|
|
|
-DHAVE_SHM_MMAP_POSIX \
|
|
|
|
-DHAVE_SHM_MMAP_FILE
|
|
|
|
endif
|
|
|
|
|
2014-01-28 22:26:27 +01:00
|
|
|
# We need to force dl "detection"
|
2014-12-03 22:41:29 +01:00
|
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
2014-01-28 22:26:27 +01:00
|
|
|
PHP_CONF_ENV += ac_cv_func_dlopen=yes ac_cv_lib_dl_dlopen=yes
|
|
|
|
PHP_EXTRA_LIBS += -ldl
|
|
|
|
else
|
|
|
|
PHP_CONF_ENV += ac_cv_func_dlopen=no ac_cv_lib_dl_dlopen=no
|
|
|
|
endif
|
|
|
|
|
2012-05-21 03:17:54 +02:00
|
|
|
# Workaround for non-IPv6 uClibc toolchain
|
2013-06-30 21:29:09 +02:00
|
|
|
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
2012-05-21 03:17:54 +02:00
|
|
|
ifneq ($(BR2_INET_IPV6),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CFLAGS += -DHAVE_DEPRECATED_DNS_FUNCS
|
2007-08-07 19:47:03 +02:00
|
|
|
endif
|
2008-03-06 19:21:33 +01:00
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2014-09-27 21:32:44 +02:00
|
|
|
PHP_CONF_OPTS += $(if $(BR2_PACKAGE_PHP_CLI),,--disable-cli)
|
|
|
|
PHP_CONF_OPTS += $(if $(BR2_PACKAGE_PHP_CGI),,--disable-cgi)
|
|
|
|
PHP_CONF_OPTS += $(if $(BR2_PACKAGE_PHP_FPM),--enable-fpm,--disable-fpm)
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2012-05-21 03:17:54 +02:00
|
|
|
### Extensions
|
2014-12-24 08:54:24 +01:00
|
|
|
PHP_CONF_OPTS += \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_SOCKETS),--enable-sockets) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_POSIX),--enable-posix) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_SESSION),--enable-session) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_HASH),--enable-hash) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_DOM),--enable-dom) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_SIMPLEXML),--enable-simplexml) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_SOAP),--enable-soap) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_XML),--enable-xml) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_XMLREADER),--enable-xmlreader) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_XMLWRITER),--enable-xmlwriter) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_EXIF),--enable-exif) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_FTP),--enable-ftp) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_JSON),--enable-json) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_TOKENIZER),--enable-tokenizer) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_PCNTL),--enable-pcntl) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_SHMOP),--enable-shmop) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_SYSVMSG),--enable-sysvmsg) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_SYSVSEM),--enable-sysvsem) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_SYSVSHM),--enable-sysvshm) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_ZIP),--enable-zip) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_CTYPE),--enable-ctype) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_FILTER),--enable-filter) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_CALENDAR),--enable-calendar) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_FILEINFO),--enable-fileinfo) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_BCMATH),--enable-bcmath) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_MBSTRING),--enable-mbstring) \
|
|
|
|
$(if $(BR2_PACKAGE_PHP_EXT_PHAR),--enable-phar)
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2014-10-05 19:38:58 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_MCRYPT),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-mcrypt=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += libmcrypt
|
2014-10-05 19:38:58 +02:00
|
|
|
endif
|
|
|
|
|
2008-03-06 19:21:33 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_OPENSSL),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-openssl=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += openssl
|
2008-03-06 19:21:33 +01:00
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2008-03-06 19:21:33 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_LIBXML2),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_ENV += php_cv_libxml_build_works=yes
|
|
|
|
PHP_CONF_OPTS += --enable-libxml --with-libxml-dir=${STAGING_DIR}/usr
|
|
|
|
PHP_DEPENDENCIES += libxml2
|
2007-08-07 19:47:03 +02:00
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2012-06-02 07:32:40 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_WDDX),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --enable-wddx --with-libexpat-dir=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += expat
|
2012-06-02 07:32:40 +02:00
|
|
|
endif
|
|
|
|
|
2012-05-21 03:17:54 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_XMLRPC),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += \
|
|
|
|
--with-xmlrpc \
|
|
|
|
$(if $(BR2_PACKAGE_LIBICONV),--with-iconv-dir=$(STAGING_DIR)/usr)
|
|
|
|
PHP_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
2008-06-01 20:04:13 +02:00
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2011-11-25 16:49:04 +01:00
|
|
|
ifneq ($(BR2_PACKAGE_PHP_EXT_ZLIB)$(BR2_PACKAGE_PHP_EXT_ZIP),)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-zlib=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += zlib
|
2007-08-07 19:47:03 +02:00
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2012-05-21 03:17:54 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_GETTEXT),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-gettext=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += $(if $(BR2_NEEDS_GETTEXT),gettext)
|
2008-03-06 19:21:33 +01:00
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2012-05-21 03:17:54 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_ICONV),y)
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-iconv=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += libiconv
|
2012-05-21 03:17:54 +02:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-iconv
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
2008-03-06 19:21:33 +01:00
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2012-05-21 03:17:54 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_INTL),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --enable-intl --with-icu-dir=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += icu
|
|
|
|
# The intl module is implemented in C++, but PHP fails to use
|
|
|
|
# g++ as the compiler for the final link. As a workaround,
|
|
|
|
# tell it to link libstdc++.
|
|
|
|
PHP_EXTRA_LIBS += -lstdc++
|
2008-03-06 19:21:33 +01:00
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2008-03-06 19:21:33 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_GMP),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-gmp=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += gmp
|
2008-03-06 19:21:33 +01:00
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2008-03-06 19:21:33 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_READLINE),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-readline=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += readline
|
2008-03-06 19:21:33 +01:00
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
|
2012-05-21 03:17:54 +02:00
|
|
|
### Native MySQL extensions
|
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_MYSQL),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-mysql=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += mysql
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_MYSQLI),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-mysqli=$(STAGING_DIR)/usr/bin/mysql_config
|
|
|
|
PHP_DEPENDENCIES += mysql
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
2015-03-08 22:37:09 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_SQLITE),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-sqlite3=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += sqlite
|
2015-03-08 22:37:09 +01:00
|
|
|
endif
|
2012-05-21 03:17:54 +02:00
|
|
|
|
2009-03-04 21:58:08 +01:00
|
|
|
### PDO
|
2008-03-06 19:21:33 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_PDO),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --enable-pdo
|
2008-03-06 19:21:33 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_PDO_SQLITE),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-pdo-sqlite=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += sqlite
|
|
|
|
PHP_CFLAGS += -DSQLITE_OMIT_LOAD_EXTENSION
|
2008-03-06 19:21:33 +01:00
|
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_PDO_MYSQL),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-pdo-mysql=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += mysql
|
2009-03-04 21:58:08 +01:00
|
|
|
endif
|
2014-08-13 15:57:11 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_PDO_POSTGRESQL),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-pdo-pgsql=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += postgresql
|
2014-08-13 15:57:11 +02:00
|
|
|
endif
|
2015-03-06 17:49:43 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_PDO_UNIXODBC),y)
|
|
|
|
PHP_CONF_OPTS += --with-pdo-odbc=unixODBC,$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += unixodbc
|
|
|
|
endif
|
2009-03-04 21:58:08 +01:00
|
|
|
endif
|
2007-08-07 19:47:03 +02:00
|
|
|
|
2012-05-21 03:17:54 +02:00
|
|
|
### Use external PCRE if it's available
|
|
|
|
ifeq ($(BR2_PACKAGE_PCRE),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-pcre-regex=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += pcre
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_CURL),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-curl=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += libcurl
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_XSL),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-xsl=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += libxslt
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_BZIP2),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-bz2=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += bzip2
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
### DBA
|
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_DBA),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --enable-dba
|
2012-05-21 03:17:54 +02:00
|
|
|
ifneq ($(BR2_PACKAGE_PHP_EXT_DBA_CDB),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --without-cdb
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_PHP_EXT_DBA_FLAT),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --without-flatfile
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_PHP_EXT_DBA_INI),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --without-inifile
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_DBA_DB4),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-db4=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += berkeleydb
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_SNMP),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += --with-snmp=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += netsnmp
|
2012-05-21 03:17:54 +02:00
|
|
|
endif
|
|
|
|
|
2014-10-05 19:38:57 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_PHP_EXT_GD),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
PHP_CONF_OPTS += \
|
|
|
|
--with-gd \
|
|
|
|
--with-jpeg-dir=$(STAGING_DIR)/usr \
|
|
|
|
--with-png-dir=$(STAGING_DIR)/usr \
|
|
|
|
--with-zlib-dir=$(STAGING_DIR)/usr \
|
|
|
|
--with-freetype-dir=$(STAGING_DIR)/usr
|
|
|
|
PHP_DEPENDENCIES += jpeg libpng freetype
|
2014-10-05 19:38:57 +02:00
|
|
|
endif
|
|
|
|
|
2014-01-28 22:26:27 +01:00
|
|
|
define PHP_EXTENSIONS_FIXUP
|
|
|
|
$(SED) "/prefix/ s:/usr:$(STAGING_DIR)/usr:" \
|
|
|
|
$(STAGING_DIR)/usr/bin/phpize
|
|
|
|
$(SED) "/extension_dir/ s:/usr:$(TARGET_DIR)/usr:" \
|
|
|
|
$(STAGING_DIR)/usr/bin/php-config
|
|
|
|
endef
|
|
|
|
|
|
|
|
PHP_POST_INSTALL_TARGET_HOOKS += PHP_EXTENSIONS_FIXUP
|
|
|
|
|
2010-09-01 17:21:27 +02:00
|
|
|
define PHP_INSTALL_FIXUP
|
2009-03-04 21:58:08 +01:00
|
|
|
rm -rf $(TARGET_DIR)/usr/lib/php
|
|
|
|
rm -f $(TARGET_DIR)/usr/bin/phpize
|
2014-11-30 15:18:59 +01:00
|
|
|
$(INSTALL) -D -m 0755 $(PHP_DIR)/php.ini-production \
|
|
|
|
$(TARGET_DIR)/etc/php.ini
|
2010-09-01 17:21:27 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
PHP_POST_INSTALL_TARGET_HOOKS += PHP_INSTALL_FIXUP
|
2009-01-25 21:59:30 +01:00
|
|
|
|
2011-01-02 12:28:35 +01:00
|
|
|
PHP_CONF_ENV += CFLAGS="$(PHP_CFLAGS)"
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|