diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 61be567..2683a25 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,8 @@ AM_CONDITIONAL([INSTALL_MACOS_FS_LINK], [case $build_os in darwin* ) test x"$ena # _BSD_SOURCE is for stat() nanosecond precision and lutimes(). # _DEFAULT_SOURCE is the new non-deprecated version of _BSD_SOURCE. # _DARWIN_BETTER_REALPATH fixes MacOS realpath() broken around Catalina (#83). -my_CPPFLAGS="-D_REENTRANT -D_FILE_OFFSET_BITS=64 -D_XOPEN_SOURCE=700 -D__BSD_VISIBLE=1 -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_DARWIN_BETTER_REALPATH" +# _DARWIN_C_SOURCE for DT_LNK (#163) +my_CPPFLAGS="-D_REENTRANT -D_FILE_OFFSET_BITS=64 -D_XOPEN_SOURCE=700 -D__BSD_VISIBLE=1 -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_DARWIN_BETTER_REALPATH -D_DARWIN_C_SOURCE" dnl libfuse >=3.17 started requiring gnu11 from the C compiler AS_IF([test "x$with_fuse2" == "xyes"], [ |