diff options
author | Remi Collet <remi@remirepo.net> | 2024-09-06 07:17:30 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-09-06 07:17:30 +0200 |
commit | e94c92f1d06d713baecbf5230a0f30b371c4b3c9 (patch) | |
tree | c89c6b96ad3538ef2c86766a66decc8c59a8c794 /61.patch | |
parent | 2f3701e825ead270d613bbc28697d90f3f5274da (diff) |
drop patches merged upstream
add patch to use pkg-config by default
Diffstat (limited to '61.patch')
-rw-r--r-- | 61.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/61.patch b/61.patch deleted file mode 100644 index 19dca69..0000000 --- a/61.patch +++ /dev/null @@ -1,30 +0,0 @@ -From c69b1c59e15402fad6def1a82c97730831af01b0 Mon Sep 17 00:00:00 2001 -From: Remi Collet <remi@remirepo.net> -Date: Tue, 20 Aug 2024 10:30:31 +0200 -Subject: [PATCH] this is a c++ ext, use proper linker command - ---- - config.m4 | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/config.m4 b/config.m4 -index da07656..e63353a 100644 ---- a/config.m4 -+++ b/config.m4 -@@ -48,7 +48,6 @@ if test "$PHP_PHPY" != "no"; then - fi - - PHP_REQUIRE_CXX() -- PHP_ADD_LIBRARY(stdc++, 1, PHPY_SHARED_LIBADD) - - PHP_SUBST(PHPY_SHARED_LIBADD) - -@@ -69,7 +68,7 @@ if test "$PHP_PHPY" != "no"; then - phpy_source_files=$(cd $phpy_source_dir && find src -type f -name "*.cc") - phpy_source_files="phpy.cc $phpy_source_files" - -- PHP_NEW_EXTENSION(phpy, $phpy_source_files , $ext_shared) -+ PHP_NEW_EXTENSION(phpy, $phpy_source_files , $ext_shared,,, cxx) - - AC_MSG_RESULT([$ext_builddir]) - |