# HG changeset patch # User Erik Grinaker # Date 1112262752 0 # Node ID 070d0062872fdb4a99e68615fd669ae69118144a # Parent 6be481e8065876a3148b2121bee63c73f43c6965 search for crack_mkdict and crack_packer in addition to the normal cracklib commands diff -r 6be481e8065876a3148b2121bee63c73f43c6965 -r 070d0062872fdb4a99e68615fd669ae69118144a ChangeLog --- a/ChangeLog Thu Mar 24 15:08:17 2005 +0000 +++ b/ChangeLog Thu Mar 31 09:52:32 2005 +0000 @@ -4,6 +4,11 @@ 2005-03-24 Erik Grinaker + * search for crack_mkdict and crack_packer in addition to + the normal cracklib commands + +2005-03-24 Erik Grinaker + * don't wrap gnome_authentication_manager_dialog_is_visible() (only available from libgnomeui-2.7.92) diff -r 6be481e8065876a3148b2121bee63c73f43c6965 -r 070d0062872fdb4a99e68615fd669ae69118144a NEWS --- a/NEWS Thu Mar 24 15:08:17 2005 +0000 +++ b/NEWS Thu Mar 31 09:52:32 2005 +0000 @@ -7,8 +7,8 @@ Bugfixes: - don't wrap gnome_authentication_manager_dialog_is_visible() (only available from libgnomeui-2.7.92) -- make configure search for new cracklib-format and cracklib-packer - commands as well as the old mkdict and packer commands +- make configure search for cracklib-format, cracklib-packer, + crack_mkdict and crack_packer as well as the normal commands - stop autolock-timer when manually locking file, to avoid crash when timer tries to re-lock file diff -r 6be481e8065876a3148b2121bee63c73f43c6965 -r 070d0062872fdb4a99e68615fd669ae69118144a acinclude.m4 --- a/acinclude.m4 Thu Mar 24 15:08:17 2005 +0000 +++ b/acinclude.m4 Thu Mar 31 09:52:32 2005 +0000 @@ -3,11 +3,11 @@ RVL_CRACKLIB_DICTPATH - AC_PATH_PROGS(CRACK_FORMAT, mkdict cracklib-format, no, $PATH:/sbin:/usr/sbin) + AC_PATH_PROGS(CRACK_FORMAT, mkdict crack_mkdict cracklib-format, no, $PATH:/sbin:/usr/sbin) if test x"$CRACK_FORMAT" = xno; then AC_MSG_ERROR([mkdict or cracklib-format from cracklib not found in your path]) fi - AC_PATH_PROGS(CRACK_PACKER, packer cracklib-packer, no, $PATH:/sbin:/usr/sbin) + AC_PATH_PROGS(CRACK_PACKER, packer crack_packer cracklib-packer, no, $PATH:/sbin:/usr/sbin) if test x"$CRACK_PACKER" = xno; then AC_MSG_ERROR([packer or cracklib-packer from cracklib not found in your path]) fi