mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
- Fixed bug #49215 (make fails on glob_wrapper)
This commit is contained in:
parent
20944e2516
commit
6ca2ea7109
2 changed files with 7 additions and 4 deletions
9
NEWS
9
NEWS
|
@ -80,10 +80,11 @@
|
|||
- Fixed bug #50481 (Storing many SPLFixedArray in an array crashes). (Felipe)
|
||||
- Fixed bug #52260 (dns_get_record fails with non-existing domain on Windows).
|
||||
(a_jelly_doughnut at phpbb dot com, Pierre)
|
||||
- Fixed #50953, socket will not connect to IPv4 address when the host has both
|
||||
IPv4 and IPv6 addresses, on Windows. (Gustavo, Pierre)
|
||||
- Fixed #50524, proc_open on Windows does not respect cwd as it does on other
|
||||
platforms. (Pierre)
|
||||
- Fixed bug #50953 (socket will not connect to IPv4 address when the host has
|
||||
both IPv4 and IPv6 addresses, on Windows). (Gustavo, Pierre)
|
||||
- Fixed bug #50524 (proc_open on Windows does not respect cwd as it does on
|
||||
other platforms). (Pierre)
|
||||
- Fixed bug #49215 (make fails on glob_wrapper). (Felipe)
|
||||
|
||||
22 Jul 2010, PHP 5.3.3
|
||||
- Upgraded bundled sqlite to version 3.6.23.1. (Ilia)
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
# endif
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_GLOB
|
||||
#ifndef GLOB_ONLYDIR
|
||||
#define GLOB_ONLYDIR (1<<30)
|
||||
#define GLOB_FLAGMASK (~GLOB_ONLYDIR)
|
||||
|
@ -278,6 +279,7 @@ php_stream_wrapper php_glob_stream_wrapper = {
|
|||
NULL,
|
||||
0
|
||||
};
|
||||
#endif /* HAVE_GLOB */
|
||||
|
||||
/*
|
||||
* Local variables:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue