diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-12-11 07:54:22 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-12-11 07:54:22 +0000 |
commit | 2d1c82bb519e5fd9c09baaf8f43db1998c4f575f (patch) | |
tree | a8b7de095d68122ff48f273126e689e71a5e25fd | |
parent | 3d9d57f071a69c10b618270f50a36ff810725c94 (diff) | |
download | pam-2d1c82bb519e5fd9c09baaf8f43db1998c4f575f.tar.gz pam-2d1c82bb519e5fd9c09baaf8f43db1998c4f575f.tar.bz2 pam-2d1c82bb519e5fd9c09baaf8f43db1998c4f575f.zip |
Relevant BUGIDs: 418450
Purpose of commit: comment
Commit summary:
---------------
added a comment to indicate that tru64 behaves like bsd by having no -ldl.
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -55,6 +55,9 @@ bug report - outstanding bugs are listed here: 0.76: please submit patches for this section with actual code/doc patches! +* A Tru64 fix (given other stuff has already resolved this, it + actually just a comment actually) from 'Eddie'. (Bug 418450 - + agmorgan) * pam_handlers: BSD fix from Dag-Erling Smørgrav and Anton Berezin (Bug 486063 - agmorgan) * added the dynamic/* directory to the distribution. If you go in diff --git a/configure.in b/configure.in index da06576d..543d975c 100644 --- a/configure.in +++ b/configure.in @@ -185,7 +185,7 @@ dnl Checks for the existence of lckpwdf in libc AC_CHECK_LIB(c, lckpwdf, HAVE_LCKPWDF=yes, HAVE_LCKPWDF=no) AC_SUBST(HAVE_LCKPWDF) -dnl Checks for the existence of libdl - on BSD its part of libc +dnl Checks for the existence of libdl - on BSD and Tru64 its part of libc AC_CHECK_LIB(dl, dlopen, LIBDL=-ldl) AC_SUBST(LIBDL) |