Skip to content

Sync HAVE_GRP_H definition #14514

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 8, 2024
Merged
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
2 changes: 1 addition & 1 deletion ext/standard/filestat.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
# endif
#endif

#if HAVE_GRP_H
#ifdef HAVE_GRP_H
# include <grp.h>
#endif

Expand Down
2 changes: 1 addition & 1 deletion ext/standard/link.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include <pwd.h>
#endif
#endif
#if HAVE_GRP_H
#ifdef HAVE_GRP_H
# include <grp.h>
#endif
#include <errno.h>
Expand Down
2 changes: 1 addition & 1 deletion ext/standard/pageinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <pwd.h>
#endif
#endif
#if HAVE_GRP_H
#ifdef HAVE_GRP_H
# include <grp.h>
#endif
#ifdef PHP_WIN32
Expand Down
2 changes: 1 addition & 1 deletion win32/build/config.w32.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
#define HAVE_UTIME 1
#undef HAVE_DIRENT_H
#define HAVE_FCNTL_H 1
#define HAVE_GRP_H 0
#undef HAVE_GRP_H
#undef HAVE_PWD_H
#undef HAVE_SYS_FILE_H
#undef HAVE_SYS_SOCKET_H
Expand Down
Loading