diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2025-06-08 12:49:42 +0200 |
---|---|---|
committer | Martin Pärtel <martin.partel@gmail.com> | 2025-06-08 12:49:42 +0200 |
commit | 2a5f11a9f6a61d62f7229a5ce3d6cabc5dcfd2bf (patch) | |
tree | 04583f85e5233e3b20cbbd6b789f63b76b4fcebc /configure.ac | |
parent | 43a8fc6dae219fa82f449f054321d22e07660704 (diff) | |
download | bindfs-2a5f11a9f6a61d62f7229a5ce3d6cabc5dcfd2bf.tar.gz |
MacOS/fuse-t fixes
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"], [ |