diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-09-06 14:34:20 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-09-06 14:36:38 +0200 |
commit | 4fefeaeb2d890e4fa53edae5f528313f82844bf8 (patch) | |
tree | e90d4433cf70cbc93a6b4230ba19d08dc00cbf92 /configure.ac | |
parent | 4dda7068aae2cb2b933f9435e1f602904848d7fd (diff) | |
download | gnutls-4fefeaeb2d890e4fa53edae5f528313f82844bf8.tar.gz |
cmocka: require 1.0.1
This prevents failures in test suite due to insufficient cmocka
library version.
Resolves #268
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1be13664af..f1d3839c58 100644 --- a/configure.ac +++ b/configure.ac @@ -468,7 +468,7 @@ if [ test "$enable_fips" = "yes" ];then fi fi -PKG_CHECK_MODULES(CMOCKA, cmocka, [with_cmocka=yes], [with_cmocka=no]) +PKG_CHECK_MODULES(CMOCKA, [cmocka >= 1.0.1], [with_cmocka=yes], [with_cmocka=no]) AM_CONDITIONAL(HAVE_CMOCKA, test "$with_cmocka" != "no") with_old_nettle=no |