Allow to use real nunit instead of mono-nunit and prefer it
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Fri, 14 Aug 2009 06:56:58 +0000 (08:56 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Fri, 14 Aug 2009 06:56:58 +0000 (08:56 +0200)
configure.ac

index 4827a3b83c7a2d9cace2bb81a7646b2d3e5170da..b2529adbc95d8016008bb69b572344716695f831 100644 (file)
@@ -144,11 +144,15 @@ if test "x$NUNIT_TESTER" = "xno" ; then
 fi
 AC_SUBST(NUNIT_TESTER)
 
-PKG_CHECK_MODULES(MONO_NUNIT, mono-nunit >= 2.4, do_tests="yes", do_tests="no")
+PKG_CHECK_MODULES(MONO_NUNIT, nunit >= 2.4,
+    do_tests="yes",
+    [ PKG_CHECK_MODULES(MONO_NUNIT, mono-nunit >= 2.4,
+        do_tests="yes", do_tests="no")
+    ])
 AC_SUBST(MONO_NUNIT_LIBS)
 AM_CONDITIONAL(ENABLE_TESTS, test "x$do_tests" = "xyes")
 if test "x$do_tests" = "xno"; then
-       AC_MSG_WARN([Could not find mono-nunit: tests will not be available])
+       AC_MSG_WARN([Could not find mono-nunit or nunit: tests will not be available])
 fi
 
 AC_CHECK_SIZEOF(off_t)