From: Guus Sliepen Date: Sun, 18 Apr 2021 14:43:17 +0000 (+0200) Subject: Fix a compile error on macOS when using an older version of autoconf. X-Git-Url: http://git.meshlink.io/?p=meshlink;a=commitdiff_plain;h=fc07b9250cf8d9d705aa9723edbefd812f43404f Fix a compile error on macOS when using an older version of autoconf. With autoconf 2.69, the USE_SYSTEM_EXTENSIONS macro did not enable _DARWIN_C_SOURCE, which could cause a compile error. This is fixed in autoconf 2.71, but in order to provide some backwards compatibility, we manually enable _DARWIN_C_SOURCE for now. --- diff --git a/configure.ac b/configure.ac index 3cf76b05..c9adc83a 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,7 @@ AM_SILENT_RULES([yes]) AC_USE_SYSTEM_EXTENSIONS AC_DEFINE([__USE_BSD], 1, [Enable BSD extensions]) AC_DEFINE([_POSIX_C_SOURCE], 200809L, [Enable POSIX features]) +AC_DEFINE([_DARWIN_C_SOURCE], 1, [Enable Darwin features]) dnl Checks for programs. AM_PROG_CC_C_O