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 345: | 77eb70aaf1e8 |
| parent 344: | 60595491f191 |
| branch: | default |
don't initialize python modules during configure checks
Changed (Δ484 bytes):
raw changeset »
ChangeLog (6 lines added, 0 lines removed)
NEWS (7 lines added, 0 lines removed)
acinclude.m4 (1 lines added, 1 lines removed)
configure.ac (0 lines added, 5 lines removed)
1 |
1 |
Revelation changelog |
2 |
2 |
|
3 |
---------------[ xxxx-xx-xx : 0.4.6 ]--------------- |
|
4 |
||
5 |
2006-01-14 Erik Grinaker <erikg@codepoet.no> |
|
6 |
||
7 |
* don't initialize python modules during configure checks |
|
8 |
||
3 |
9 |
---------------[ 2005-08-25 : 0.4.5 ]--------------- |
4 |
10 |
|
5 |
11 |
2005-08-24 Erik Grinaker <erikg@codepoet.no> |
1 |
xxxx-xx-xx: Revelation 0.4.6 |
|
2 |
============================ |
|
3 |
||
4 |
Bugfixes: |
|
5 |
- don't initialize python modules during configure checks |
|
6 |
||
7 |
||
1 |
8 |
2005-08-25: Revelation 0.4.5 |
2 |
9 |
============================ |
3 |
10 |
| … | … | @@ -90,7 +90,7 @@ AC_DEFUN([RVL_PYGTK], [ |
90 |
90 |
AC_DEFUN([RVL_PYTHON_MODULE], [ |
91 |
91 |
AC_MSG_CHECKING(python module $1) |
92 |
92 |
|
93 |
$PYTHON -c "import |
|
93 |
$PYTHON -c "import imp; imp.find_module('$1')" 2>/dev/null |
|
94 |
94 |
|
95 |
95 |
if test $? -eq 0; then |
96 |
96 |
AC_MSG_RESULT(yes) |
| … | … | @@ -22,14 +22,9 @@ RVL_FDO_MIME() |
22 |
22 |
|
23 |
23 |
RVL_PYTHON_MODULE(Crypto, yes) |
24 |
24 |
RVL_PYTHON_MODULE(bonobo, yes) |
25 |
RVL_PYTHON_MODULE(bonobo.ui, yes) |
|
26 |
25 |
RVL_PYTHON_MODULE(gconf, yes) |
27 |
26 |
RVL_PYTHON_MODULE(gtk, yes) |
28 |
RVL_PYTHON_MODULE(gtk.gdk, yes) |
|
29 |
27 |
RVL_PYTHON_MODULE(gnome, yes) |
30 |
RVL_PYTHON_MODULE(gnome.applet, yes) |
|
31 |
RVL_PYTHON_MODULE(gnome.ui, yes) |
|
32 |
RVL_PYTHON_MODULE(gnome.vfs, yes) |
|
33 |
28 |
RVL_PYTHON_MODULE(gobject, yes) |
34 |
29 |
RVL_PYTHON_MODULE(pango, yes) |
35 |
30 |
