b352e337ccc271bdb9a237fb631cbdc4ea18c7af
[gnulib.git] / m4 / gc.m4
1 # gc.m4 serial 9
2 dnl Copyright (C) 2005-2013 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_GC],
8 [
9   AC_ARG_WITH([libgcrypt],
10     AS_HELP_STRING([--with-libgcrypt], [use libgcrypt for low-level crypto]),
11     libgcrypt=$withval, libgcrypt=no)
12   if test "$libgcrypt" != no; then
13     AC_LIB_HAVE_LINKFLAGS([gcrypt], [gpg-error], [
14 #include <gcrypt.h>
15 /* GCRY_MODULE_ID_USER was added in 1.4.4 and gc-libgcrypt.c
16    will fail on startup if we don't have 1.4.4 or later, so
17    test for it early. */
18 #if !defined GCRY_MODULE_ID_USER
19 error too old libgcrypt
20 #endif
21 ])
22   fi
23 ])