diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-07-01 13:02:03 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-07-01 13:02:03 +0000 |
commit | 42810b4db3171d066e2cc0fdd7189fbb9a04d62f (patch) | |
tree | 9a33cadac4687b0630987c278a51e11d245d0a77 | |
parent | 3d8e68cf98708887d286331393912e16022ff423 (diff) |
for better or worse, make distcheck now passes againBRANCH-RELEASE-0_4_0-ROOT
Original commit message from CVS:
for better or worse, make distcheck now passes again
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | tests/old/testsuite/Makefile.am | 3 | ||||
-rw-r--r-- | testsuite/Makefile.am | 3 |
4 files changed, 10 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index e6ae29d03..32a6ae56b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -22,7 +22,7 @@ then fi . common/gst-autogen.sh -CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-plugin-builddir' +CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-plugin-builddir --enable-failing-tests' autogen_options $@ diff --git a/configure.ac b/configure.ac index 03e0b0fc1..7f6626293 100644 --- a/configure.ac +++ b/configure.ac @@ -250,10 +250,12 @@ AC_HELP_STRING([--disable-failing-tests],[disable building tests known to fail]) no) BUILD_FAILING_TESTS=no ;; *) AC_MSG_ERROR(bad value ${enableval} for --disable-failing-tests) ;; esac], -[BUILD_FAILING_TESTS=yes]) dnl Default value +[BUILD_FAILING_TESTS=no]) dnl Default value AM_CONDITIONAL(BUILD_FAILING_TESTS, test "x$BUILD_FAILING_TESTS" = "xyes") if test x$BUILD_FAILING_TESTS = xyes; then AC_MSG_WARN([building tests known to fail, use --disable-failing-tests to disable]) +else + AC_MSG_WARN([Sissy ! By asking to not build the tests known to fail, you hereby waive your right to customer support. If you do not agree with this EULA, please press Ctrl-C before the next line is printed. By allowing the next line to be printed, you expressly acknowledge your acceptance of this EULA.]) fi AC_ARG_ENABLE(examples, diff --git a/tests/old/testsuite/Makefile.am b/tests/old/testsuite/Makefile.am index 9dbfddf3d..9965779ad 100644 --- a/tests/old/testsuite/Makefile.am +++ b/tests/old/testsuite/Makefile.am @@ -20,6 +20,9 @@ check_PROGRAMS = $(testprogs) LIBS = $(GST_LIBS) CFLAGS = $(GST_CFLAGS) +# we makes them, we gots to clean them +CLEANFILES = test-registry.xml elementstest-registry.xml + DIST_SUBDIRS = bytestream caps cleanup clock dynparams elements \ plugin refcounting threads diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am index 9dbfddf3d..9965779ad 100644 --- a/testsuite/Makefile.am +++ b/testsuite/Makefile.am @@ -20,6 +20,9 @@ check_PROGRAMS = $(testprogs) LIBS = $(GST_LIBS) CFLAGS = $(GST_CFLAGS) +# we makes them, we gots to clean them +CLEANFILES = test-registry.xml elementstest-registry.xml + DIST_SUBDIRS = bytestream caps cleanup clock dynparams elements \ plugin refcounting threads |