aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAnders Roxell <anders.roxell@linaro.org>2016-03-29 20:23:29 +0200
committerMaxim Uvarov <maxim.uvarov@linaro.org>2016-03-30 16:19:05 +0300
commitd5a31c0ca45e869c927582cc29f0ca3b720cb4e4 (patch)
treeeb81c1b5a0353b9d6097df3ef339344c909baaac /configure.ac
parent1d773441e56b9c9a97347b90bd9b7c14bc77eb58 (diff)
configure: move test_cpp to its own m4 file
Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Tested-and-reviewed-by: Mike Holmes <mike.holmes@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac16
1 files changed, 1 insertions, 15 deletions
diff --git a/configure.ac b/configure.ac
index cc6a38b7c..0a9918b81 100644
--- a/configure.ac
+++ b/configure.ac
@@ -139,6 +139,7 @@ AM_CONDITIONAL([HAVE_PCAP], [test $have_pcap = yes])
AM_CONDITIONAL([SDK_INSTALL_PATH_], [test "x${SDK_INSTALL_PATH_}" = "x1"])
AM_CONDITIONAL([test_installdir], [test "$testdir" != ""])
AM_CONDITIONAL([test_perf], [test x$test_perf = xyes ])
+AM_CONDITIONAL([test_cpp], [test x$test_cpp = xyes ])
##########################################################################
# Setup doxygen documentation
@@ -171,21 +172,6 @@ AC_ARG_ENABLE([test-helper],
fi])
AM_CONDITIONAL([test_helper], [test x$test_helper = xyes ])
-
-##########################################################################
-# Enable/disable test-cpp
-##########################################################################
-test_cpp=no
-AC_ARG_ENABLE([test-cpp],
- [ --enable-test-cpp run basic test aginast cpp],
- [if test "x$enableval" = "xyes"; then
- test_cpp=yes
- else
- test_cpp=no
- fi])
-
-AM_CONDITIONAL([test_cpp], [test x$test_cpp = xyes ])
-
##########################################################################
# Set optional CUnit path
##########################################################################