diff options
author | Dan Winship <danw@src.gnome.org> | 2000-08-14 08:39:48 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-08-14 08:39:48 +0800 |
commit | 54cc3f1e450b41603fac6b89b135e4d9ef5f523a (patch) | |
tree | 752c7031e0bde0de5909432868706de46a87a507 | |
parent | e2027224b4012431e74ba7c7652862a7a6097e58 (diff) | |
download | gsoc2013-evolution-54cc3f1e450b41603fac6b89b135e4d9ef5f523a.tar gsoc2013-evolution-54cc3f1e450b41603fac6b89b135e4d9ef5f523a.tar.gz gsoc2013-evolution-54cc3f1e450b41603fac6b89b135e4d9ef5f523a.tar.bz2 gsoc2013-evolution-54cc3f1e450b41603fac6b89b135e4d9ef5f523a.tar.lz gsoc2013-evolution-54cc3f1e450b41603fac6b89b135e4d9ef5f523a.tar.xz gsoc2013-evolution-54cc3f1e450b41603fac6b89b135e4d9ef5f523a.tar.zst gsoc2013-evolution-54cc3f1e450b41603fac6b89b135e4d9ef5f523a.zip |
Fix the name of the binary to look for for PGP5
* configure.in: Fix the name of the binary to look for for PGP5
svn path=/trunk/; revision=4827
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2000-08-13 Dan Winship <danw@helixcode.com> + + * configure.in: Fix the name of the binary to look for for PGP5 + 2000-08-12 Michael Meeks <michael@helixcode.com> * configure.in: Check for Bonobo 0.17 diff --git a/configure.in b/configure.in index 9acada7094..62f2c61184 100644 --- a/configure.in +++ b/configure.in @@ -497,7 +497,7 @@ if test -n "$GPG"; then AC_DEFINE_UNQUOTED(GPG_PATH, "$GPG") AC_DEFINE(PGP_PROGRAM, "GPG") else - AC_PATH_PROG(PGP5, pgp5) + AC_PATH_PROG(PGP5, pgpv) if test -n "$PGP5"; then AC_DEFINE_UNQUOTED(PGP5_PATH, "$PGP5") AC_DEFINE(PGP_PROGRAM, "PGP") |