diff options
author | Allan McRae <allan@archlinux.org> | 2012-03-28 20:30:53 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-04-07 11:28:28 -0500 |
commit | cb5ae428b63c9807f855638c00720f54ea73413f (patch) | |
tree | 25448318bdecc0bd11cb030ef832433a81ecc781 | |
parent | b5043dd6c3e2a9da637dfefbbd2b6a89cda600f0 (diff) | |
download | pacman-cb5ae428b63c9807f855638c00720f54ea73413f.tar.xz |
Check minimum required gpgme version
We use interfaces first introduced in gpgme-1.3.0 so test we have
at least that version.
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1bded39a..18726cfb 100644 --- a/configure.ac +++ b/configure.ac @@ -179,7 +179,7 @@ require_gpgme=no AS_IF([test "x$with_gpgme" != "xno"], [AS_IF([test "x$with_gpgme" = "xyes"], [require_gpgme=yes]) - AM_PATH_GPGME([], + AM_PATH_GPGME([1.3.0], [LIBS_save="$LIBS" CPPFLAGS_save="$CPPFLAGS" CFLAGS_save="$CFLAGS" |