summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorAnas Nashif <nashif@intel.com>2006-11-20 17:41:40 +0000
committerAnas Nashif <nashif@intel.com>2006-11-20 17:41:40 +0000
commit0ff8639d03248af1174a760e7a0a0fb9c158ad99 (patch)
tree6e392024e226fd18f741c77959c4fe253edd07fe /configure.in
parentbed9421704d9685816451f6a7497c2b9dd75aa47 (diff)
downloadwsmancli-0ff8639d03248af1174a760e7a0a0fb9c158ad99.tar.gz
wsmancli-0ff8639d03248af1174a760e7a0a0fb9c158ad99.tar.xz
wsmancli-0ff8639d03248af1174a760e7a0a0fb9c158ad99.zip
moved cunit tests to client where they belong
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 40e1eb6..2a64dda 100644
--- a/configure.in
+++ b/configure.in
@@ -15,10 +15,15 @@ WSMAN_PKG=$PACKAGE_NAME
AC_SUBST(WSMAN_PKG)
PKG_CHECK_MODULES(OPENWSMAN, [openwsman >= 0.0.0])
+have_cunit=no
+AC_CHECK_HEADERS([CUnit/Basic.h], have_cunit="yes" )
+AM_CONDITIONAL(BUILD_CUNIT_TESTS, test "$have_cunit" == "yes")
AC_OUTPUT([
wsmancli.spec
Makefile
src/Makefile
+ tests/Makefile
+ tests/cunit/Makefile
])