Add missing quotes in configure.

Hopefully fixes #138.
This commit is contained in:
Ari Koivula 2016-08-01 14:35:42 +03:00
parent 330ce53deb
commit 00fb79aeaa

View file

@ -61,8 +61,8 @@ AC_ARG_WITH([cryptopp],
[Build with cryptopp Enables selective encryption.]))
AS_IF([test "x$with_cryptopp" = "xyes"], [
PKG_CHECK_MODULES([cryptopp], [cryptopp],
AC_DEFINE([KVZ_SEL_ENCRYPTION], [1], [With cryptopp]),
AC_MSG_ERROR([cryptopp not found with pkg-config])
[AC_DEFINE([KVZ_SEL_ENCRYPTION], [1], [With cryptopp])],
[AC_MSG_ERROR([cryptopp not found with pkg-config])]
)
])