Fix feature test macro
The expected feature test macro is _POSIX_C_SOURCE having a value greater or equal to 200809L. Fixes #1726 <https://github.com/Genymobile/scrcpy/issues/1726>
This commit is contained in:
parent
c243fd4c3f
commit
bd9f656933
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
// for portability
|
// for portability (kill, readlink, strdup, strtok_r)
|
||||||
#define _POSIX_SOURCE // for kill()
|
#define _POSIX_C_SOURCE 200809L
|
||||||
#define _BSD_SOURCE // for readlink()
|
#define _BSD_SOURCE
|
||||||
|
|
||||||
// modern glibc will complain without this
|
// modern glibc will complain without this
|
||||||
#define _DEFAULT_SOURCE
|
#define _DEFAULT_SOURCE
|
||||||
|
|
Loading…
Reference in a new issue