mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-04 04:48:55 +00:00
Extensions for PHP/Apache are packaged under the name of `php-apache-*` and are installed under the directory `$PREFIX/lib/php-apache/`. (Extensions under `$PREFIX/lib/php/` will not work with PHP/Apache.) See also https://github.com/termux/termux-packages/issues/13256.
15 lines
505 B
Diff
15 lines
505 B
Diff
See https://groups.google.com/a/chromium.org/forum/#!topic/chromium-reviews/AXhZapYuHi8
|
|
|
|
diff -u -r ../php-5.6.16/ext/standard/php_fopen_wrapper.c ./ext/standard/php_fopen_wrapper.c
|
|
--- ../php-5.6.16/ext/standard/php_fopen_wrapper.c 2015-11-25 15:28:38.000000000 -0500
|
|
+++ ./ext/standard/php_fopen_wrapper.c 2016-01-04 06:42:57.421589363 -0500
|
|
@@ -312,7 +312,7 @@
|
|
}
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
- dtablesize = getdtablesize();
|
|
+ dtablesize = sysconf(_SC_OPEN_MAX);
|
|
#else
|
|
dtablesize = INT_MAX;
|
|
#endif
|