Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,7 @@ AC_CHECK_FUNCS(m4_normalize([
funopen
gai_strerror
getcwd
getdtablesize
getgrnam_r
gethostname
getloadavg
Expand Down
2 changes: 1 addition & 1 deletion ext/standard/php_fopen_wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ static php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, const c
return NULL;
}

#ifdef HAVE_UNISTD_H
#ifdef HAVE_GETDTABLESIZE
dtablesize = getdtablesize();
#else
dtablesize = INT_MAX;
Expand Down
Loading