This commit is contained in:
TriForceX
2021-03-13 22:13:38 -03:00
parent c77595adbd
commit b3ecc6e32d
7043 changed files with 119373 additions and 73690 deletions
+6
View File
@@ -0,0 +1,6 @@
config BR2_PACKAGE_PHP_XDEBUG
bool "php-xdebug"
help
Extension for PHP to assist with debugging and development.
http://xdebug.org
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 ef479ee1a3da3f933e0d046ca8cd0c14601f29b2c0c41cc60c9388546a4e0272 LICENSE
sha256 e330c5ccb77890b06dd7bf093567051450b2438b79fed8e7e6c4834278d46092 php-xdebug-2.9.6.tar.gz
+28
View File
@@ -0,0 +1,28 @@
################################################################################
#
# php-xdebug
#
################################################################################
PHP_XDEBUG_VERSION = 2.9.6
PHP_XDEBUG_SITE = $(call github,xdebug,xdebug,$(PHP_XDEBUG_VERSION))
PHP_XDEBUG_INSTALL_STAGING = YES
PHP_XDEBUG_LICENSE = Xdebug License (PHP-3.0-like)
PHP_XDEBUG_LICENSE_FILES = LICENSE
# phpize does the autoconf magic
PHP_XDEBUG_DEPENDENCIES = php host-autoconf
PHP_XDEBUG_CONF_OPTS = \
--enable-xdebug \
--with-php-config=$(STAGING_DIR)/usr/bin/php-config \
--with-xdebug=$(STAGING_DIR)/usr
define PHP_XDEBUG_PHPIZE
(cd $(@D); \
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
$(STAGING_DIR)/usr/bin/phpize)
endef
PHP_XDEBUG_PRE_CONFIGURE_HOOKS += PHP_XDEBUG_PHPIZE
$(eval $(autotools-package))