grim/gplate

Parents 1093724ed5e0
Children b2a74ff3c13a
removing the reference to the tests to prep for the move to gtest
--- a/configure.ac Fri Nov 13 17:05:03 2009 -0600
+++ b/configure.ac Fri Nov 13 17:07:12 2009 -0600
@@ -154,25 +154,6 @@
AC_SUBST(CFLAGS)
dnl #######################################################################
-dnl # do we want to build the tests?
-dnl #######################################################################
-AC_ARG_ENABLE(tests,
- AC_HELP_STRING([--enable-tests],[build test programs])
- ,,enable_tests=no)
-
-CHECK_CFLAGS=
-CHECK_LIBS=
-
-if test x"$enable_tests" = x"yes" ; then
- PKG_CHECK_MODULES(CHECK, [check >= 0.9.4],enable_tests=yes,enable_tests=no)
-fi
-
-AC_SUBST(CHECK_CFLAGS)
-AC_SUBST(CHECK_LIBS)
-
-AM_CONDITIONAL(BUILD_TESTS, test x"$enable_tests" = x"yes")
-
-dnl #######################################################################
dnl # check for glib and other glib dependencies
dnl #######################################################################
PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.14.0 gobject-2.0 >= 2.14.0])
@@ -217,9 +198,8 @@
echo "AC_PACKAGE_NAME AC_PACKAGE_VERSION configuration complete"
fi
-echo "
+cat << EOF
Debugging enabled: $enable_debug
-Build tests: $enable_tests
Build documentation: $enable_gtk_doc
@@ -240,4 +220,4 @@
Type make to compile
-"
+EOF
--- a/tests/Makefile.am Fri Nov 13 17:05:03 2009 -0600
+++ b/tests/Makefile.am Fri Nov 13 17:07:12 2009 -0600
@@ -8,8 +8,6 @@
CLEANFILES=
-if BUILD_TESTS
-
TESTS=test
check_PROGRAMS=test
@@ -45,4 +43,3 @@
$(test_SOURCES:%=%.gcov.html) \
index.html
-endif