[xmlrpc-c] Fix MacOS build

This commit is contained in:
Jakub Karolczyk
2023-07-04 10:42:38 +01:00
parent ab211c542a
commit 921eebdbea
4 changed files with 15 additions and 0 deletions

View File

@@ -1,4 +1,7 @@
#define _XOPEN_SOURCE 600 /* Make sure strdup() is in <string.h> */
#ifdef __APPLE__
#define _DARWIN_C_SOURCE
#endif
#ifndef _GNU_SOURCE
#define _GNU_SOURCE /* But only when HAVE_ASPRINTF */
#endif