diff options
author | Werner Koch <wk@gnupg.org> | 2012-05-08 14:33:34 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2012-05-08 15:23:10 +0200 |
commit | 14cfd45d38db69f90242f8e10967262f4879753d (patch) | |
tree | fd1e931c6e818304c1edbcaa0679974d1ce3e675 /configure.ac | |
parent | po: Update de.po. (diff) | |
download | gnupg2-14cfd45d38db69f90242f8e10967262f4879753d.tar.xz gnupg2-14cfd45d38db69f90242f8e10967262f4879753d.zip |
Always require libksba.
--
The extra test for libksba and possible trouble building GnuPG without
ksba is not anymore worth the trouble.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 26 |
1 files changed, 7 insertions, 19 deletions
diff --git a/configure.ac b/configure.ac index 6aadaa266..324f7927c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # configure.ac - for GnuPG 2.1 # Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -# 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. # # This file is part of GnuPG. # @@ -1506,11 +1506,6 @@ if test "$have_adns" = "yes"; then fi -if test $have_ksba = no; then - build_gpgsm=no - build_scdaemon=no -fi - build_scdaemon_extra="" if test "$build_scdaemon" = "yes"; then if test $have_libusb = no; then @@ -1592,18 +1587,9 @@ if test "$have_libgcrypt" = "no"; then *** *** You need libgcrypt to build this program. ** This library is for example available at -*** ftp://ftp.gnupg.org/gcrypt/alpha/libgcrypt/ -*** (at least version $NEED_LIBGCRYPT_VERSION using API $NEED_LIBGCRYPT_API is required.) +*** ftp://ftp.gnupg.org/gcrypt/libgcrypt/ +*** (at least version $NEED_LIBGCRYPT_VERSION (API $NEED_LIBGCRYPT_API) is required.) ***]]) -dnl elif test "$gnupg_cv_gcry_kdf_derive" = no; then -dnl die=yes -dnl AC_MSG_NOTICE([[ -dnl *** -dnl *** Libgcrypt 1.5.0 has not yet been released and thus the API -dnl *** is a bit in a flux. Your version misses the function -dnl *** gcry_kdf_derive -dnl *** You need to install a newer Libgcrypt version. -dnl #***]]) fi if test "$have_libassuan" = "no"; then die=yes @@ -1616,6 +1602,7 @@ if test "$have_libassuan" = "no"; then ***]]) fi if test "$have_ksba" = "no"; then + die=yes AC_MSG_NOTICE([[ *** *** You need libksba to build this program. @@ -1643,16 +1630,17 @@ if test "$gnupg_have_ldap" = "no"; then fi fi if test "$have_npth" = "no"; then + die=yes AC_MSG_NOTICE([[ *** *** It is now required to build with support for the -*** New Portable Threads Library (NPth). Please install this +*** New Portable Threads Library (nPth). Please install this *** library first. The library is for example available at *** ftp://ftp.gnupg.org/gcrypt/npth/ +*** (at least version $NEED_NPTH_VERSION (API $NEED_NPTH_API) is requi *** On a Debian GNU/Linux system you can install it using *** apt-get install libnpth-dev ***]]) - die=yes fi if test "$die" = "yes"; then |