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

Move some configure checks out of a condition #55

Merged
merged 1 commit into from
May 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,13 @@ if test x$only_gss_module != xyes; then
[AC_MSG_ERROR([Could not find libcap headers])])
fi

if test x$initscript = xsystemd; then
WITH_SYSTEMD_UNIT_DIR
WITH_SYSTEMD_USER_UNIT_DIR
AM_CHECK_SYSTEMD
fi
fi
AM_CONDITIONAL([BUILD_PROXY], [test x$only_gss_module != xyes ])
if test x$initscript = xsystemd; then
WITH_SYSTEMD_UNIT_DIR
WITH_SYSTEMD_USER_UNIT_DIR
fi
AM_CHECK_SYSTEMD

AC_ARG_ENABLE([always-interpose],
[AC_HELP_STRING([--enable-always-interpose],
Expand Down