[packages/php/PHP_5_5] fix readdir_r signature detection
atler
atler at pld-linux.org
Thu Jan 30 03:08:17 CET 2025
commit 2ae0f6186ed79f5a0f82804614438c7dfc7f5a05
Author: Jan Palus <atler at pld-linux.org>
Date: Thu Jan 23 12:55:49 2025 +0100
fix readdir_r signature detection
php.spec | 2 ++
readdir_r.patch | 17 +++++++++++++++++
2 files changed, 19 insertions(+)
---
diff --git a/php.spec b/php.spec
index dcd13cd..d1a8415 100644
--- a/php.spec
+++ b/php.spec
@@ -228,6 +228,7 @@ Patch70: php-icu64.patch
Patch71: icu69.patch
Patch72: icu70.patch
Patch73: libxml2-2.12.patch
+Patch74: readdir_r.patch
URL: https://www.php.net/
%{?with_interbase:%{!?with_interbase_inst:BuildRequires: Firebird-devel >= 1.0.2.908-2}}
%{?with_pspell:BuildRequires: aspell-devel >= 2:0.50.0}
@@ -2111,6 +2112,7 @@ exit 1
%patch -P71 -p1
%patch -P72 -p1
%patch -P73 -p1
+%patch -P74 -p1
sed -E -i -e '1s,#!\s*/usr/bin/env\s+(.*),#!%{__bindir}\1,' \
run-tests.php
diff --git a/readdir_r.patch b/readdir_r.patch
new file mode 100644
index 0000000..4359425
--- /dev/null
+++ b/readdir_r.patch
@@ -0,0 +1,17 @@
+--- php-7.2.34/acinclude.m4.orig 2025-01-23 20:45:18.432571977 +0100
++++ php-7.2.34/acinclude.m4 2025-01-23 20:54:20.252520613 +0100
+@@ -1349,12 +1349,13 @@
+ #define _REENTRANT
+ #include <sys/types.h>
+ #include <dirent.h>
++#include <stdlib.h>
+
+ #ifndef PATH_MAX
+ #define PATH_MAX 1024
+ #endif
+
+-main() {
++int main() {
+ DIR *dir;
+ char entry[sizeof(struct dirent)+PATH_MAX];
+ struct dirent *pentry = (struct dirent *) &entry;
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/php.git/commitdiff/a6b87e4f9cd97cf0189586b11bcfb1797322a3c4
More information about the pld-cvs-commit
mailing list