erikg / Revelation
Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.
| commit 259: | 546c9c94d2eb |
| parent 258: | ac9e3621e5ea |
| branch: | default |
check for mkdict/packer under /sbin and /usr/sbin in addition to /sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/local/bin:/opt/bin:/usr/i686-pc-linux-gnu/gcc-bin/3.3.5:/opt/ati/bin:/opt/Acrobat5:/opt/stuffit/bin:/opt/blackdown-jdk-1.4.2.01/bin:/opt/blackdown-jdk-1.4.2.01/jre/bin:/usr/qt/3/bin:/usr/kde/3.3/bin:/opt/HelixPlayer:/usr/games/bin:/opt/vmware/bin
Changed (Δ368 bytes):
raw changeset »
ChangeLog (8 lines added, 0 lines removed)
NEWS (7 lines added, 0 lines removed)
acinclude.m4 (2 lines added, 2 lines removed)
1 |
1 |
Revelation changelog |
2 |
2 |
|
3 |
---------------[ xxxx-xx-xx : 0.4.2 ]--------------- |
|
4 |
||
5 |
2005-03-22 Erik Grinaker <erikg@codepoet.no> |
|
6 |
||
7 |
* check for mkdict/packer under /sbin and /usr/sbin in |
|
8 |
addition to $PATH |
|
9 |
||
10 |
||
3 |
11 |
---------------[ 2005-03-21 : 0.4.1 ]--------------- |
4 |
12 |
|
5 |
13 |
2005-03-21 Erik Grinaker <erikg@codepoet.no> |
1 |
xxxx-xx-xx: Revelation 0.4.2 |
|
2 |
============================ |
|
3 |
||
4 |
Bugfixes: |
|
5 |
- check for mkdict/packer under /sbin and /usr/sbin in addition to $PATH |
|
6 |
||
7 |
||
1 |
8 |
2005-03-21: Revelation 0.4.1 |
2 |
9 |
============================ |
3 |
10 |
| … | … | @@ -3,11 +3,11 @@ AC_DEFUN(RVL_CRACKLIB, [ |
3 |
3 |
|
4 |
4 |
RVL_CRACKLIB_DICTPATH |
5 |
5 |
|
6 |
AC_PATH_PROG(CRACK_MKDICT, mkdict, no |
|
6 |
AC_PATH_PROG(CRACK_MKDICT, mkdict, no, $PATH:/sbin:/usr/sbin) |
|
7 |
7 |
if test x"$CRACK_MKDICT" = xno; then |
8 |
8 |
AC_MSG_ERROR([mkdict executable from cracklib not found in your path]) |
9 |
9 |
fi |
10 |
AC_PATH_PROG(CRACK_PACKER, packer, no |
|
10 |
AC_PATH_PROG(CRACK_PACKER, packer, no, $PATH:/sbin:/usr/sbin) |
|
11 |
11 |
if test x"$CRACK_PACKER" = xno; then |
12 |
12 |
AC_MSG_ERROR([packer executable from cracklib not found in your path]) |
13 |
13 |
fi |
