mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
For a list of changes, see:b147624d48...0.4.1 Removed patches which are included in this release. Also, since Buildroot commit [1] (package/php: bump version to 8.4.13) php-pecl-dbus is failing to build with error: /builds/buildroot.org/buildroot/test-output/TestPhpPeclDbus/build/php-pecl-dbus-b147624d480c3353e6c700e9a2d0c6f14d853941/php_dbus.h:52:9: error: implicit declaration of function 'rebuild_object_properties'; did you mean 'rebuild_object_properties_internal'? [-Wimplicit-function-declaration] This commits fixes the issue. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/12184413758 [1]a9e5cf6ac2Signed-off-by: Bernd Kuhls <bernd@kuhls.net> [Julien: add commit log info about build failure] Signed-off-by: Julien Olivain <ju.o@free.fr>
25 lines
776 B
Makefile
25 lines
776 B
Makefile
################################################################################
|
|
#
|
|
# php-pecl-dbus
|
|
#
|
|
################################################################################
|
|
|
|
PHP_PECL_DBUS_VERSION = 0.4.1
|
|
PHP_PECL_DBUS_SITE = $(call github,derickr,pecl-dbus,$(PHP_PECL_DBUS_VERSION))
|
|
PHP_PECL_DBUS_LICENSE = PHP-3.01
|
|
PHP_PECL_DBUS_LICENSE_FILES = LICENSE
|
|
PHP_PECL_DBUS_DEPENDENCIES = php dbus libxml2 host-autoconf host-pkgconf
|
|
|
|
PHP_PECL_DBUS_CONF_OPTS = \
|
|
--with-php-config=$(STAGING_DIR)/usr/bin/php-config
|
|
|
|
define PHP_PECL_DBUS_PHPIZE
|
|
(cd $(@D); \
|
|
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
|
|
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
|
|
$(STAGING_DIR)/usr/bin/phpize)
|
|
endef
|
|
PHP_PECL_DBUS_PRE_CONFIGURE_HOOKS += PHP_PECL_DBUS_PHPIZE
|
|
|
|
$(eval $(autotools-package))
|