2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00

Add check for skeyaccess(3)

This commit is contained in:
Todd C. Miller 2001-12-12 19:43:23 +00:00
parent 4632986cd0
commit f66fcb464b
2 changed files with 4 additions and 0 deletions

View File

@ -476,6 +476,9 @@
/* Define if you use S/Key. */ /* Define if you use S/Key. */
#undef HAVE_SKEY #undef HAVE_SKEY
/* Define if you have skeyaccess(3). */
#undef HAVE_SKEYACCESS
/* Define if you use NRL OPIE. */ /* Define if you use NRL OPIE. */
#undef HAVE_OPIE #undef HAVE_OPIE

View File

@ -1752,6 +1752,7 @@ if test "$with_skey" = "yes"; then
else else
echo 'Unable to locate libskey.a and/or skey.h, you will have to edit the Makefile and add -L/path/to/skey/lib to SUDO_LDFLAGS and/or -I/path/to/skey.h to CPPFLAGS' echo 'Unable to locate libskey.a and/or skey.h, you will have to edit the Makefile and add -L/path/to/skey/lib to SUDO_LDFLAGS and/or -I/path/to/skey.h to CPPFLAGS'
fi fi
AC_CHECK_LIB(skey, skeyaccess, AC_DEFINE(HAVE_SKEYACCESS))
fi fi
dnl dnl