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.

Clone this repository (size: 1.8 MB): HTTPS / SSH
$ hg clone http://oss.codepoet.no/revelation
commit 267: 070d0062872f
parent 266: 6be481e80658
branch: default
search for crack_mkdict and crack_packer in addition to the normal cracklib commands
Erik Grinaker / erikg
5 years ago

Changed (Δ163 bytes):

raw changeset »

ChangeLog (5 lines added, 0 lines removed)

NEWS (2 lines added, 2 lines removed)

acinclude.m4 (2 lines added, 2 lines removed)

Up to file-list ChangeLog:

@@ -4,6 +4,11 @@ Revelation changelog
4
4
5
5
2005-03-24  Erik Grinaker <erikg@codepoet.no>
6
6
7
	* search for crack_mkdict and crack_packer in addition to
8
	the normal cracklib commands
9
10
2005-03-24  Erik Grinaker <erikg@codepoet.no>
11
7
12
	* don't wrap gnome_authentication_manager_dialog_is_visible()
8
13
	(only available from libgnomeui-2.7.92)
9
14

Up to file-list NEWS:

@@ -7,8 +7,8 @@ New features:
7
7
Bugfixes:
8
8
- don't wrap gnome_authentication_manager_dialog_is_visible()
9
9
  (only available from libgnomeui-2.7.92)
10
- make configure search for new cracklib-format and cracklib-packer
11
  commands as well as the old mkdict and packer commands
10
- make configure search for cracklib-format, cracklib-packer,
11
  crack_mkdict and crack_packer as well as the normal commands
12
12
- stop autolock-timer when manually locking file, to avoid crash when
13
13
  timer tries to re-lock file
14
14

Up to file-list acinclude.m4:

@@ -3,11 +3,11 @@ AC_DEFUN(RVL_CRACKLIB, [
3
3
4
4
	RVL_CRACKLIB_DICTPATH
5
5
6
	AC_PATH_PROGS(CRACK_FORMAT, mkdict cracklib-format, no, $PATH:/sbin:/usr/sbin)
6
	AC_PATH_PROGS(CRACK_FORMAT, mkdict crack_mkdict cracklib-format, no, $PATH:/sbin:/usr/sbin)
7
7
	if test x"$CRACK_FORMAT" = xno; then
8
8
		AC_MSG_ERROR([mkdict or cracklib-format from cracklib not found in your path])
9
9
	fi
10
	AC_PATH_PROGS(CRACK_PACKER, packer cracklib-packer, no, $PATH:/sbin:/usr/sbin)
10
	AC_PATH_PROGS(CRACK_PACKER, packer crack_packer cracklib-packer, no, $PATH:/sbin:/usr/sbin)
11
11
	if test x"$CRACK_PACKER" = xno; then
12
12
		AC_MSG_ERROR([packer or cracklib-packer from cracklib not found in your path])
13
13
	fi