initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
From 96cd5cb5eddd3db2faaa3643dad2fe4677d7c438 Mon Sep 17 00:00:00 2001
|
||||
From: mmokhi <mokhi64@gmail.com>
|
||||
Date: Thu, 30 Jul 2020 11:25:33 +0200
|
||||
Subject: [PATCH] Add build support for PHP8.0 (#381)
|
||||
|
||||
From upstream commit: 96cd5cb5eddd3db2faaa3643dad2fe4677d7c438
|
||||
|
||||
Signed-off-by: mmokhi <mokhi64@gmail.com>
|
||||
Signed-off-by: Adam Duskett <aduskett@gmail.com>
|
||||
---
|
||||
amqp_envelope.h | 7 +++++++
|
||||
php7_support.h | 11 +++++++++++
|
||||
2 files changed, 18 insertions(+)
|
||||
|
||||
diff --git a/amqp_envelope.h b/amqp_envelope.h
|
||||
index e63a3a5..e315682 100644
|
||||
--- a/amqp_envelope.h
|
||||
+++ b/amqp_envelope.h
|
||||
@@ -20,6 +20,13 @@
|
||||
| - Jonathan Tansavatdi |
|
||||
+----------------------------------------------------------------------+
|
||||
*/
|
||||
+
|
||||
+#if PHP_MAJOR_VERSION >= 7
|
||||
+ #include "php7_support.h"
|
||||
+#else
|
||||
+ #include "php5_support.h"
|
||||
+#endif
|
||||
+
|
||||
extern zend_class_entry *amqp_envelope_class_entry;
|
||||
|
||||
void convert_amqp_envelope_to_zval(amqp_envelope_t *amqp_envelope, zval *envelope TSRMLS_DC);
|
||||
diff --git a/php7_support.h b/php7_support.h
|
||||
index 47ce983..c9e8f5b 100644
|
||||
--- a/php7_support.h
|
||||
+++ b/php7_support.h
|
||||
@@ -101,6 +101,17 @@ typedef zval PHP5to7_zend_resource_le_t;
|
||||
|
||||
#define PHP5to7_ZEND_ACC_FINAL_CLASS ZEND_ACC_FINAL
|
||||
|
||||
+/* Small change to let it build after a major internal change for php8.0
|
||||
+ * More info:
|
||||
+ * https://github.com/php/php-src/blob/php-8.0.0alpha3/UPGRADING.INTERNALS#L47
|
||||
+ */
|
||||
+#if PHP_MAJOR_VERSION >= 8
|
||||
+# define TSRMLS_DC
|
||||
+# define TSRMLS_D
|
||||
+# define TSRMLS_CC
|
||||
+# define TSRMLS_C
|
||||
+# endif
|
||||
+
|
||||
#endif //PHP_AMQP_PHP7_SUPPORT_H
|
||||
|
||||
/*
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,12 @@
|
||||
config BR2_PACKAGE_PHP_AMQP
|
||||
bool "php-amqp"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # rabbitmq-c
|
||||
select BR2_PACKAGE_OPENSSL # rabbitmq-c: amqp_ssl_socket.h
|
||||
select BR2_PACKAGE_RABBITMQ_C
|
||||
help
|
||||
Communicate with any AMQP compliant server.
|
||||
|
||||
http://pecl.php.net/package/amqp
|
||||
|
||||
comment "php-amqp needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 0ebc61052eb12406dddf5eabfe8749a12d52c566816b8aab04fb9916d0c26ed2 amqp-1.10.2.tgz
|
||||
sha256 ecd004e9ae3fcf54896b562d5e8008e36041f2620076effd58e5f4187299cee8 LICENSE
|
||||
@@ -0,0 +1,26 @@
|
||||
################################################################################
|
||||
#
|
||||
# php-amqp
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PHP_AMQP_VERSION = 1.10.2
|
||||
PHP_AMQP_SOURCE = amqp-$(PHP_AMQP_VERSION).tgz
|
||||
PHP_AMQP_SITE = https://pecl.php.net/get
|
||||
PHP_AMQP_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
|
||||
--with-amqp=$(STAGING_DIR)/usr
|
||||
# phpize does the autoconf magic
|
||||
PHP_AMQP_DEPENDENCIES = rabbitmq-c php host-autoconf
|
||||
PHP_AMQP_LICENSE = PHP-3.01
|
||||
PHP_AMQP_LICENSE_FILES = LICENSE
|
||||
|
||||
define PHP_AMQP_PHPIZE
|
||||
(cd $(@D); \
|
||||
PHP_AUTOCONF=$(HOST_DIR)/bin/autoconf \
|
||||
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
|
||||
$(STAGING_DIR)/usr/bin/phpize)
|
||||
endef
|
||||
|
||||
PHP_AMQP_PRE_CONFIGURE_HOOKS += PHP_AMQP_PHPIZE
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user