Skip to content
Snippets Groups Projects
Commit 7f6f5041 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

autotools: fix check for CppUnit

parent 1c7089c0
No related branches found
No related tags found
No related merge requests found
...@@ -129,8 +129,8 @@ AC_ARG_ENABLE([proxy_client], AS_HELP_STRING([--enable-proxy-client], [Enable pr ...@@ -129,8 +129,8 @@ AC_ARG_ENABLE([proxy_client], AS_HELP_STRING([--enable-proxy-client], [Enable pr
AM_CONDITIONAL(ENABLE_PROXY_CLIENT, test x$proxy_client == xyes) AM_CONDITIONAL(ENABLE_PROXY_CLIENT, test x$proxy_client == xyes)
AC_ARG_ENABLE([tests], AS_HELP_STRING([--enable-tests], [Enable tests]), build_tests=yes, build_tests=no) AC_ARG_ENABLE([tests], AS_HELP_STRING([--enable-tests], [Enable tests]), build_tests=yes, build_tests=no)
AM_CONDITIONAL(ENABLE_TESTS, test x$build_tests == xyes) AM_CONDITIONAL(ENABLE_TESTS, test "x$build_tests" == xyes)
AM_COND_IF([ENABLE_TESTS], [ AS_IF([test "x$build_tests" == xyes], [
PKG_CHECK_MODULES([CppUnit], [cppunit >= 1.12]) PKG_CHECK_MODULES([CppUnit], [cppunit >= 1.12])
]) ])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment