summaryrefslogtreecommitdiff
path: root/m4/gc.m4
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2010-01-12 19:08:04 +0100
committerSimon Josefsson <simon@josefsson.org>2010-01-12 19:08:04 +0100
commitfa353b4b7a2f57da6bda5090b7521142bd6cb2a2 (patch)
tree75072edfccb788adce598126198881f68e2dd17e /m4/gc.m4
parentfc80165c92e8b92da6e88e4fdb9c472125124fa0 (diff)
downloadgnulib-fa353b4b7a2f57da6bda5090b7521142bd6cb2a2.tar.gz
m4/gc.m4: Check if linking to libgcrypt also needs linking to libgpg-error.
Diffstat (limited to 'm4/gc.m4')
-rw-r--r--m4/gc.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/gc.m4 b/m4/gc.m4
index b43e30b638..f237d8dd37 100644
--- a/m4/gc.m4
+++ b/m4/gc.m4
@@ -1,4 +1,4 @@
-# gc.m4 serial 5
+# gc.m4 serial 6
dnl Copyright (C) 2005, 2006, 2009, 2010 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -10,7 +10,7 @@ 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], [], [#include <gcrypt.h>])
+ AC_LIB_HAVE_LINKFLAGS([gcrypt], [gpg-error], [#include <gcrypt.h>])
fi
if test "$ac_cv_libgcrypt" = yes; then
AC_LIBOBJ([gc-libgcrypt])