fix linux bullshit

This commit is contained in:
Kyle Isom 2020-07-31 09:19:10 -07:00
parent 9c0ed68fbb
commit 3c1f1a204e
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ OPSYS=$(uname -s)
echo "Configuring for ${OPSYS}..."
if [ "x${OPSYS}" = "xLinux" ]; then
OS_CFLAGS="-D_BSD_SOURCE -D_POSIX_SOURCE -D_XOPEN_SOURCE"
OS_CFLAGS="-D_DEFAULT_SOURCE -D_POSIX_SOURCE -D_XOPEN_SOURCE"
elif [ "x${OPSYS}" = "xDarwin" ]; then
OS_CFLAGS="-D_DARWIN_C_SOURCE"
else