mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
https://pecl.php.net/package/amqp PHP Extionson to communicate with any AMQP compliant server
31 lines
1 KiB
Diff
31 lines
1 KiB
Diff
--- a/config.m4
|
|
+++ b/config.m4
|
|
@@ -104,27 +104,7 @@
|
|
|
|
PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $AMQP_DIR/$PHP_LIBDIR, AMQP_SHARED_LIBADD)
|
|
PHP_SUBST(AMQP_SHARED_LIBADD)
|
|
-
|
|
- if test -z "$TRAVIS" ; then
|
|
- type git &>/dev/null
|
|
-
|
|
- if test $? -eq 0 ; then
|
|
- git describe --abbrev=0 --tags &>/dev/null
|
|
-
|
|
- if test $? -eq 0 ; then
|
|
- AC_DEFINE_UNQUOTED([PHP_AMQP_VERSION], ["`git describe --abbrev=0 --tags`-`git rev-parse --abbrev-ref HEAD`-dev"], [git version])
|
|
- fi
|
|
-
|
|
- git rev-parse --short HEAD &>/dev/null
|
|
-
|
|
- if test $? -eq 0 ; then
|
|
- AC_DEFINE_UNQUOTED([PHP_AMQP_REVISION], ["`git rev-parse --short HEAD`"], [git revision])
|
|
- fi
|
|
- else
|
|
- AC_MSG_NOTICE([git not installed. Cannot obtain php_amqp version tag. Install git.])
|
|
- fi
|
|
- fi
|
|
-
|
|
+ AC_DEFINE_UNQUOTED([PHP_AMQP_VERSION], ["`echo ${PWD##*/amqp-}`"], ["AMQP Module Version"])
|
|
AMQP_SOURCES="amqp.c amqp_exchange.c amqp_queue.c amqp_connection.c amqp_connection_resource.c amqp_channel.c amqp_envelope.c"
|
|
|
|
PHP_NEW_EXTENSION(amqp, $AMQP_SOURCES, $ext_shared)
|