diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-04-15 06:49:47 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-04-15 06:49:47 +0000 |
commit | 377f9e2157d3cebf0de131228a0a525a94a5dc5e (patch) | |
tree | 091868d6eab45461e61b4e43e65cf79aae1c08a1 | |
parent | b9c88b6c2d291ddc8011c4b3d18e28108cb5b937 (diff) | |
download | pam-377f9e2157d3cebf0de131228a0a525a94a5dc5e.tar.gz pam-377f9e2157d3cebf0de131228a0a525a94a5dc5e.tar.bz2 pam-377f9e2157d3cebf0de131228a0a525a94a5dc5e.zip |
Relevant BUGIDs: 415419
Purpose of commit: cleanup
Commit summary:
---------------
A number of things were being found by autoconf, but the _pam_aconf.h
file wasn't picking them up. It is now.
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | _pam_aconf.h.in | 14 |
2 files changed, 16 insertions, 0 deletions
@@ -49,6 +49,8 @@ bug report - outstanding bugs are listed here: 0.76: please submit patches for this section with actual code/doc patches! +* propagate some definitions to the _pam_aconf.h file - from David Lee + (Bug 415419 - agmorgan) * solaris GCC OS_CFLAGS change from David Lee (Bug 415412 - agmorgan) * added a comment to this CHANGELOG to explain why most of the bugids used below appear not to be known to sourceforge [try adding 100000 diff --git a/_pam_aconf.h.in b/_pam_aconf.h.in index ba6d82b5..35dfd197 100644 --- a/_pam_aconf.h.in +++ b/_pam_aconf.h.in @@ -48,6 +48,20 @@ /* have libpwdb - don't expect this to be important for much longer */ #undef HAVE_LIBPWDB +/* have gethostname() declared */ +#undef HAVE_GETHOSTNAME + +#undef HAVE_GETTIMEOFDAY +#undef HAVE_MKDIR +#undef HAVE_SELECT +#undef HAVE_STRCSPN +#undef HAVE_STRDUP +#undef HAVE_STRERROR +#undef HAVE_STRSPN +#undef HAVE_STRSTR +#undef HAVE_STRTOL +#undef HAVE_UNAME + /* ugly hack to partially support old pam_strerror syntax */ #undef UGLY_HACK_FOR_PRIOR_BEHAVIOR_SUPPORT |