meta-openembedded/meta-webserver/recipes-php/xdebug/xdebug_3.4.5.bb
Jason Schonberg 51a526de20
xdebug: upgrade 3.4.2 -> 3.4.5
[2025-07-14] — Xdebug 3.4.5
    Fixed bug #2332: Segmentation fault for code coverage with nested fibers
    Fixed bug #2356: Reading properties with get hooks may modify property value

[2025-06-12] — Xdebug 3.4.4
    Fixed bug #2349: Regression in Xdebug 3.4.3 breaks throwing exceptions in nested generators
    Fixed bug #2350: Crash when a certain page generates an exception since Xdebug 3.4.3
    Fixed bug #2352: Crash when using latest Xdebug version when throwing exceptions
    Fixed bug #2354: The __invoke frame in call stacks don't have the argument name in the trace

[2025-05-14] — Xdebug 3.4.3
    Fixed bug #2322: Xdebug tries to open debugging connection in destructors during shutdown
    Fixed bug #2325: Referred chrome browser extension is no longer working
    Fixed bug #2326: Step debugger finishes if property debugging handler in PHP throws an exception
    Fixed bug #2331: Segmentation fault with 'invalid' variable names
    Fixed bug #2339: Trying to throw an exception can cause a zend_mm_heap corrupted error under specific circumstances
    Fixed bug #2340: Xdebug case sensitivity issues on some files introduced since 3.3.0
    Fixed bug #2343: Fatal error on virtual property hook step debugging
    Fixed bug #2348: Xdebug does not resolve breakpoints in property hooks

Signed-off-by: Jason Schonberg <schonm@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-09-01 15:52:05 -07:00

35 lines
1017 B
BlitzBasic

SUMMARY = "Debugging and profiling extension for PHP"
LICENSE = "Xdebug"
LIC_FILES_CHKSUM = "file://LICENSE;md5=afd6ce4aa04fdc346e5b3c6e634bd75c"
DEPENDS = "php re2c-native"
SRC_URI = "https://xdebug.org/files/xdebug-${PV}.tgz"
SRC_URI[sha256sum] = "f58442306ce55fe3b811c31759a247242989164f2a7933f05c8d59b06665b9c9"
UPSTREAM_CHECK_REGEX = "xdebug-(?P<pver>\d+(\.\d+)+)\.tgz"
inherit autotools
EXTRA_OECONF += "--enable-xdebug -with-php-config=${STAGING_BINDIR_CROSS}/php-config"
do_configure() {
cd ${S}
${STAGING_BINDIR_CROSS}/phpize
cd ${B}
# Running autoreconf as autotools_do_configure would do here
# breaks the libtool configuration resulting in a failure later
# in do_compile. It's possible this may be fixable, however the
# easiest course of action for the moment is to avoid doing that.
oe_runconf
}
do_install() {
oe_runmake install INSTALL_ROOT=${D}
}
FILES:${PN} += "${libdir}/php*/extensions/*/*.so"
FILES:${PN}-dbg += "${libdir}/php*/extensions/*/.debug"