Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No quota support on macOS #492

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions macros/netatalk.m4
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,12 @@ if test x"$this_os" = "xsolaris"; then
init_style=solaris
fi

dnl ----- macOS specific -----
if test x"$this_os" = "xmacosx"; then
AC_MSG_RESULT([ * macOS specific configuration])
AC_DEFINE(NO_QUOTA_SUPPORT, 1, [No quota support])
fi

dnl Whether to run ldconfig after installing libraries
AC_PATH_PROG(NETA_LDCONFIG, ldconfig, , [$PATH$PATH_SEPARATOR/sbin$PATH_SEPARATOR/bin$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/usr/bin])
echo NETA_LDCONFIG = $NETA_LDCONFIG
Expand Down