#1157 closed defect (fixed)
Linux-PAM has cracklib listed as optional dependency
Reported by: | Owned by: | DJ Lucas | |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | BOOK | Version: | SVN |
Severity: | normal | Keywords: | |
Cc: |
Description ¶
I built Linux-PAM last week, and cracklib was _not_ optional; the configure script failed to complete without cracklib installed.
I did not find any configure option to disable the use of cracklib, so I believe this should be moved to a required (not optional) dependency.
Change History (7)
comment:1 by , 20 years ago
comment:2 by , 20 years ago
Status: | new → assigned |
---|
checking path to cracklib dictionary... configure: error: none found
OR I been dreaming again.
comment:4 by , 20 years ago
Adding untested patch. Currently unable to test, but it will work to kill the error, but I don't know about the build. Assumptons are bad, but I'd assume if HAVE_LIBCRACK were set to "NO" then the cracklib module would not be built...if that is not the case, then it should be extended to make the check for "HAVE_LIBCRACK" in the cracklib dir makefile. This could easily be attached to the linkage patch with the rest of them.
--- Linux-PAM-0.78/configure.in.old 2005-01-11 22:46:04.679482864 -0600 +++ Linux-PAM-0.78/configure.in 2005-01-11 22:46:53.381079096 -0600 @@ -278,7 +278,7 @@
done
done if test -z "$CRACKLIB_DICTPATH" ; then
- AC_MSG_ERROR(none found)
+ AC_MSG_RESULT(none found)
else
AC_MSG_RESULT($CRACKLIB_DICTPATH)
fi
comment:5 by , 20 years ago
Owner: | changed from | to
---|---|
Status: | assigned → new |
Do you have the output. I have installed it without and with in the last few days.