diff options
author | Jan Rekorajski <baggins@sith.mimuw.edu.pl> | 2000-12-04 20:56:10 +0000 |
---|---|---|
committer | Jan Rekorajski <baggins@sith.mimuw.edu.pl> | 2000-12-04 20:56:10 +0000 |
commit | f2f7c96e3c19f0cdfaa9153b1c0faeee1714c5b7 (patch) | |
tree | a1708543d7b5244a389294ccf40eb240542a6896 /_pam_aconf.h.in | |
parent | 77b11e3dfdb0f0f83fa531b9bcb7bc0d3243fbae (diff) | |
download | pam-f2f7c96e3c19f0cdfaa9153b1c0faeee1714c5b7.tar.gz pam-f2f7c96e3c19f0cdfaa9153b1c0faeee1714c5b7.tar.bz2 pam-f2f7c96e3c19f0cdfaa9153b1c0faeee1714c5b7.zip |
Relevant BUGIDs: 124397
Purpose of commit: new feature
Commit summary:
---------------
* _pam_aconf.h.in, configure.in - added PAM_PATH_MAILDIR set via
--with-mailspool=dir option (default is _PAM_MAILDIR if defined
in paths.h otherwise /var/spool/mail
Diffstat (limited to '_pam_aconf.h.in')
-rw-r--r-- | _pam_aconf.h.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/_pam_aconf.h.in b/_pam_aconf.h.in index 3a200514..ba6d82b5 100644 --- a/_pam_aconf.h.in +++ b/_pam_aconf.h.in @@ -54,4 +54,11 @@ /* read both confs - read /etc/pam.d and /etc/pam.conf in serial */ #undef PAM_READ_BOTH_CONFS +#undef HAVE_PATHS_H +#ifdef HAVE_PATHS_H +#include <paths.h> +#endif +/* location of the mail spool directory */ +#undef PAM_PATH_MAILDIR + #endif /* PAM_ACONF_H */ |