From: Thibault Godouet Date: Wed, 12 Sep 2001 13:45:25 +0000 (+0000) Subject: added PAM support X-Git-Tag: ver2_9_4~251 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=426d1d46f724f78ec1531f42aa7adddd5d46b7a4;p=thirdparty%2Ffcron.git added PAM support --- diff --git a/config.h.in b/config.h.in index fa0af41..f61abbd 100644 --- a/config.h.in +++ b/config.h.in @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: config.h.in,v 1.36 2001-08-20 20:02:53 thib Exp $ */ + /* $Id: config.h.in,v 1.37 2001-09-12 13:50:09 thib Exp $ */ /* *********************************************************** */ @@ -287,6 +287,9 @@ /* Define if you have . */ #undef NLIST_STRUCT +/* Define if you have the header file. */ +#undef HAVE_SECURITY_PAM_APPL_H + /* Define if you have the header file. */ #undef HAVE_STDARG_H @@ -325,3 +328,6 @@ /* Define if you have the dgc library (-ldgc). */ #undef HAVE_LIBDGC + +/* Define if you have the pam library (-lpam). */ +#undef HAVE_LIBPAM diff --git a/global.h b/global.h index b7348be..c79b5de 100644 --- a/global.h +++ b/global.h @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: global.h,v 1.32 2001-08-20 10:58:07 thib Exp $ */ + /* $Id: global.h,v 1.33 2001-09-12 13:45:25 thib Exp $ */ /* @@ -101,6 +101,10 @@ #include #endif +#ifdef HAVE_LIBPAM +#include "pam.h" +#endif + #include "bitstring.h" /* bit arrays */ #include "option.h" /* manage fcrontab's options */