1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

hurd: add includes and macro prerequisites

- ptsname() needs _XOPEN_SOURCE >= 500
- setenv needs _POSIX_C_SOURCE >= 200112
- setgroups needs grp.h
This commit is contained in:
Olivier Valentin 2024-07-16 22:34:02 +02:00 committed by GitHub
parent 2780b87d56
commit 90648ea3e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -307,6 +307,7 @@ if(APPLE)
endif()
if(CMAKE_SYSTEM_NAME STREQUAL "GNU")
list(APPEND uv_defines _GNU_SOURCE _POSIX_C_SOURCE=200112 _XOPEN_SOURCE=500)
list(APPEND uv_libraries dl)
list(APPEND uv_sources
src/unix/bsd-ifaddrs.c

View File

@ -55,7 +55,8 @@
extern char **environ;
#endif
#if defined(__linux__)
#if defined(__linux__) || \
defined(__GNU__)
# include <grp.h>
#endif