[packages/php/PHP_5_3] fix readdir_r signature detection
atler
atler at pld-linux.org
Thu Jan 30 14:30:25 CET 2025
commit f98edac4244f90c37be022fcab95dbf29af2a5ce
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 ef62e45..c868ec7 100644
--- a/php.spec
+++ b/php.spec
@@ -253,6 +253,7 @@ Patch76: php-bug-61930.patch
Patch77: php-icu64.patch
Patch78: icu69.patch
Patch79: libxml2-2.12.patch
+Patch80: readdir_r.patch
# Fixes for security bugs
# https://repo.webtatic.com/yum/centos/5/SRPMS/repoview/php.html
# also from RHEL6/CentOS7
@@ -2172,6 +2173,7 @@ gzip -dc %{SOURCE15} | tar xf - -C sapi/
%patch -P77 -p1
%patch -P78 -p1
%patch -P79 -p1
+%patch -P80 -p1
%patch -P220 -p1
%patch -P221 -p1
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/fa45464d430906614c2c00fb7f0736ecec41f51f
More information about the pld-cvs-commit
mailing list