diff options
author | Remi Collet <remi@remirepo.net> | 2025-09-03 12:25:49 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-09-03 12:25:49 +0200 |
commit | 1581540300e603c28091e20c2255264c1f087cd5 (patch) | |
tree | 4125e365a5f63439b1e35c87422d17abf22a9827 /ion-bash53.patch | |
parent | 968bf9f15d67b17b31909b145811ebd1215e29b0 (diff) |
add patch for bash 5.3.0 from
https://github.com/awesomized/ext-ion/pull/12
Diffstat (limited to 'ion-bash53.patch')
-rw-r--r-- | ion-bash53.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ion-bash53.patch b/ion-bash53.patch new file mode 100644 index 0000000..ed1a07a --- /dev/null +++ b/ion-bash53.patch @@ -0,0 +1,23 @@ +From c6aa40dc135ef52263eddc9172a63615df0d36c4 Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Wed, 3 Sep 2025 12:07:39 +0200 +Subject: [PATCH] workaround for broken PHP_EXPAND_PATH + +--- + config.m4 | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/config.m4 b/config.m4 +index 63188c2..1e96289 100644 +--- a/config.m4 ++++ b/config.m4 +@@ -38,8 +38,7 @@ AC_DEFUN([ION_BUNDLE], [dnl + PHP_ADD_INCLUDE(PHP_EXT_SRCDIR([ion])/ion-c/ionc/include) + PHP_ADD_INCLUDE(PHP_EXT_SRCDIR([ion])/ion-c/decNumber/include) + +- PHP_EXPAND_PATH(PHP_EXT_BUILDDIR([ion]), bdir) +- bdir="$bdir/ion-c/build" ++ bdir="$ext_builddir/ion-c/build" + if test "$ext_shared" = yes; then + ION_SHARED_LIBADD="-lionc_static -ldecNumber_static -L$bdir/ionc -L$bdir/decNumber" + else |