# HG changeset patch # User Erik Grinaker # Date 1111574495 0 # Node ID 8f6033ffc71b48aa97e5951840505c59c1925eb6 # Parent 5411d685ecc636c1a01215a4ad44fbb7e26f4eaf make configure search for new cracklib-format and cracklib-packer commands as well as the old mkdict and packer commands diff -r 5411d685ecc636c1a01215a4ad44fbb7e26f4eaf -r 8f6033ffc71b48aa97e5951840505c59c1925eb6 ChangeLog --- a/ChangeLog Tue Mar 22 19:07:35 2005 +0000 +++ b/ChangeLog Wed Mar 23 10:41:35 2005 +0000 @@ -2,6 +2,12 @@ ---------------[ xxxx-xx-xx : 0.4.3 ]--------------- +2005-03-23 Erik Grinaker + + * make configure search for new cracklib-format and + cracklib-packer commands as well as the old mkdict and + packer commands + 2005-03-22 Erik Grinaker * added quit button to unlock file dialog diff -r 5411d685ecc636c1a01215a4ad44fbb7e26f4eaf -r 8f6033ffc71b48aa97e5951840505c59c1925eb6 NEWS --- a/NEWS Tue Mar 22 19:07:35 2005 +0000 +++ b/NEWS Wed Mar 23 10:41:35 2005 +0000 @@ -4,6 +4,10 @@ New features: - added quit button to unlock file dialog +Bugfixes: +- make configure search for new cracklib-format and cracklib-packer + commands as well as the old mkdict and packer commands + 2005-03-22: Revelation 0.4.2 ============================ diff -r 5411d685ecc636c1a01215a4ad44fbb7e26f4eaf -r 8f6033ffc71b48aa97e5951840505c59c1925eb6 TODO --- a/TODO Tue Mar 22 19:07:35 2005 +0000 +++ b/TODO Wed Mar 23 10:41:35 2005 +0000 @@ -11,6 +11,8 @@ - make library modules more independent, so only a few are imported - run unit tests on built libraries instead of installed ones - remove the small "holes" on the sides of the file icon +- disable file autolocking when file is already locked manually + (causes crash) 0.5.x: - ensure complete UTF-8 support diff -r 5411d685ecc636c1a01215a4ad44fbb7e26f4eaf -r 8f6033ffc71b48aa97e5951840505c59c1925eb6 acinclude.m4 --- a/acinclude.m4 Tue Mar 22 19:07:35 2005 +0000 +++ b/acinclude.m4 Wed Mar 23 10:41:35 2005 +0000 @@ -3,13 +3,13 @@ RVL_CRACKLIB_DICTPATH - AC_PATH_PROG(CRACK_MKDICT, mkdict, no, $PATH:/sbin:/usr/sbin) - if test x"$CRACK_MKDICT" = xno; then - AC_MSG_ERROR([mkdict executable from cracklib not found in your path]) + AC_PATH_PROGS(CRACK_FORMAT, 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_PROG(CRACK_PACKER, packer, no, $PATH:/sbin:/usr/sbin) + AC_PATH_PROGS(CRACK_PACKER, packer cracklib-packer, no, $PATH:/sbin:/usr/sbin) if test x"$CRACK_PACKER" = xno; then - AC_MSG_ERROR([packer executable from cracklib not found in your path]) + AC_MSG_ERROR([packer or cracklib-packer from cracklib not found in your path]) fi ]) diff -r 5411d685ecc636c1a01215a4ad44fbb7e26f4eaf -r 8f6033ffc71b48aa97e5951840505c59c1925eb6 data/cracklib/Makefile.am --- a/data/cracklib/Makefile.am Tue Mar 22 19:07:35 2005 +0000 +++ b/data/cracklib/Makefile.am Wed Mar 23 10:41:35 2005 +0000 @@ -11,5 +11,5 @@ pwdict.hwm pwdict.pwd pwdict.pwi: pwdict - $(CRACK_MKDICT) pwdict | $(CRACK_PACKER) pwdict + $(CRACK_FORMAT) pwdict | $(CRACK_PACKER) pwdict