2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00

Remove now-unused CHECK_INTERCEPT variable.

This commit is contained in:
Todd C. Miller
2021-09-18 13:38:55 -06:00
parent d9e8c852ba
commit 1d2512ae10
2 changed files with 0 additions and 15 deletions

8
configure vendored
View File

@@ -818,7 +818,6 @@ SELINUX_USAGE
BSDAUTH_USAGE
DONT_LEAK_PATH_INFO
PRELOAD_MODULE
CHECK_INTERCEPT
INSTALL_NOEXEC
INSTALL_INTERCEPT
INSTALL_BACKUP
@@ -3560,7 +3559,6 @@ ac_config_headers="$ac_config_headers config.h pathnames.h"
#
@@ -3619,7 +3617,6 @@ devsearch="/dev/pts:/dev/vt:/dev/term:/dev/zcons:/dev/pty:/dev"
INSTALL_BACKUP=
INSTALL_INTERCEPT=
INSTALL_NOEXEC=
CHECK_INTERCEPT=
PRELOAD_MODULE=-module
exampledir='$(docdir)/examples'
devdir='$(srcdir)'
@@ -31280,11 +31277,6 @@ if test X"$enable_intercept" != X"no"; then
PROGS="${PROGS} sudo_intercept.la"
INSTALL_INTERCEPT="install-intercept"
# Can't use sanitizers with LD_PRELOAD
if test "$enable_sanitizer" != "yes"; then
CHECK_INTERCEPT=check_intercept
fi
cat >>confdefs.h <<EOF
#define _PATH_SUDO_INTERCEPT "$intercept_file"
EOF

View File

@@ -79,7 +79,6 @@ AC_SUBST([sesh_file])
AC_SUBST([INSTALL_BACKUP])
AC_SUBST([INSTALL_INTERCEPT])
AC_SUBST([INSTALL_NOEXEC])
AC_SUBST([CHECK_INTERCEPT])
AC_SUBST([PRELOAD_MODULE])
AC_SUBST([DONT_LEAK_PATH_INFO])
AC_SUBST([BSDAUTH_USAGE])
@@ -234,7 +233,6 @@ dnl
INSTALL_BACKUP=
INSTALL_INTERCEPT=
INSTALL_NOEXEC=
CHECK_INTERCEPT=
PRELOAD_MODULE=-module
exampledir='$(docdir)/examples'
devdir='$(srcdir)'
@@ -4859,11 +4857,6 @@ if test X"$enable_intercept" != X"no"; then
PROGS="${PROGS} sudo_intercept.la"
INSTALL_INTERCEPT="install-intercept"
# Can't use sanitizers with LD_PRELOAD
if test "$enable_sanitizer" != "yes"; then
CHECK_INTERCEPT=check_intercept
fi
SUDO_DEFINE_UNQUOTED(_PATH_SUDO_INTERCEPT, "$intercept_file", [The fully qualified pathname of sudo_intercept.so])
fi
if test X"$with_noexec" != X"no"; then