X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Fgc.m4;h=b352e337ccc271bdb9a237fb631cbdc4ea18c7af;hb=de18a76e7211b58ae21bffa72af30f3d31ee76b7;hp=976c0d966d69d81990f457fb010c3da5c49b8ad6;hpb=d370afedf47ca1e969a4ef9349f5110d0359c9af;p=gnulib.git diff --git a/m4/gc.m4 b/m4/gc.m4 index 976c0d966..b352e337c 100644 --- a/m4/gc.m4 +++ b/m4/gc.m4 @@ -1,5 +1,5 @@ -# gc.m4 serial 7 -dnl Copyright (C) 2005-2006, 2009-2011 Free Software Foundation, Inc. +# gc.m4 serial 9 +dnl Copyright (C) 2005-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -10,11 +10,14 @@ AC_DEFUN([gl_GC], AS_HELP_STRING([--with-libgcrypt], [use libgcrypt for low-level crypto]), libgcrypt=$withval, libgcrypt=no) if test "$libgcrypt" != no; then - AC_LIB_HAVE_LINKFLAGS([gcrypt], [gpg-error], [#include ]) - fi - if test "$ac_cv_libgcrypt" = yes; then - AC_LIBOBJ([gc-libgcrypt]) - else - AC_LIBOBJ([gc-gnulib]) + AC_LIB_HAVE_LINKFLAGS([gcrypt], [gpg-error], [ +#include +/* GCRY_MODULE_ID_USER was added in 1.4.4 and gc-libgcrypt.c + will fail on startup if we don't have 1.4.4 or later, so + test for it early. */ +#if !defined GCRY_MODULE_ID_USER +error too old libgcrypt +#endif +]) fi ])