summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-php/xdebug/xdebug_2.6.0.bb
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2018-08-22 08:26:32 +0800
committerKhem Raj <raj.khem@gmail.com>2018-08-21 17:28:14 -0700
commit811447a949d5cf2a3bf23f4ea416993f16efbc66 (patch)
tree8880503c76d8d524528da133d4fc75586953f4d7 /meta-webserver/recipes-php/xdebug/xdebug_2.6.0.bb
parentbc0f44428dfa7ccbb24456013f0873a31e18d047 (diff)
downloadmeta-openembedded-811447a949d5cf2a3bf23f4ea416993f16efbc66.tar.gz
xdebug: upgrade 2.6.0 -> 2.6.1
Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-webserver/recipes-php/xdebug/xdebug_2.6.0.bb')
-rw-r--r--meta-webserver/recipes-php/xdebug/xdebug_2.6.0.bb35
1 files changed, 0 insertions, 35 deletions
diff --git a/meta-webserver/recipes-php/xdebug/xdebug_2.6.0.bb b/meta-webserver/recipes-php/xdebug/xdebug_2.6.0.bb
deleted file mode 100644
index 2b8d1efb71..0000000000
--- a/meta-webserver/recipes-php/xdebug/xdebug_2.6.0.bb
+++ /dev/null
@@ -1,35 +0,0 @@
1SUMMARY = "Debugging and profiling extension for PHP"
2LICENSE = "Xdebug"
3LIC_FILES_CHKSUM = "file://LICENSE;md5=34df3a274aa12b795417c65634c07f16"
4
5DEPENDS = "php re2c-native"
6
7SRC_URI = "http://xdebug.org/files/xdebug-${PV}.tgz"
8
9SRC_URI[md5sum] = "ed3545852e6f4a00fb8730362d0431ee"
10SRC_URI[sha256sum] = "b5264cc03bf68fcbb04b97229f96dca505d7b87ec2fb3bd4249896783d29cbdc"
11
12UPSTREAM_CHECK_REGEX = "xdebug-(?P<pver>\d+(\.\d+)+)\.tgz"
13
14inherit autotools
15
16EXTRA_OECONF += "--enable-xdebug -with-php-config=${STAGING_BINDIR_CROSS}/php-config"
17
18do_configure() {
19 cd ${S}
20 ${STAGING_BINDIR_CROSS}/phpize
21 cd ${B}
22
23 # Running autoreconf as autotools_do_configure would do here
24 # breaks the libtool configuration resulting in a failure later
25 # in do_compile. It's possible this may be fixable, however the
26 # easiest course of action for the moment is to avoid doing that.
27 oe_runconf
28}
29
30do_install() {
31 oe_runmake install INSTALL_ROOT=${D}
32}
33
34FILES_${PN} += "${libdir}/php*/extensions/*/*.so"
35FILES_${PN}-dbg += "${libdir}/php*/extensions/*/.debug"