Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | The "check" package is checked for without an explicit enable/disable option, |
| 2 | which can lead to non-deterministic build issues with both check and libxslt. |
| 3 | |
| 4 | As the unit test suite is minimal at present, simply disable the test suite. In |
| 5 | the future if the test suite is expanded this can be made conditional on the |
| 6 | ptest DISTRO_FEATURE. |
| 7 | |
| 8 | Upstream-Status: Inappropriate |
| 9 | Signed-off-by: Ross Burton <ross.burton@intel.com> |
| 10 | |
| 11 | |
| 12 | diff --git a/configure.ac b/configure.ac |
| 13 | index 6d7c9a5..22cceb9 100644 |
| 14 | --- a/configure.ac |
| 15 | +++ b/configure.ac |
| 16 | @@ -21,7 +21,8 @@ AC_USE_SYSTEM_EXTENSIONS |
| 17 | |
| 18 | AM_PATH_PYTHON([2.6]) |
| 19 | |
| 20 | -PKG_CHECK_MODULES(CHECK, [check >= 0.9.4], [HAVE_CHECK=yes], [HAVE_CHECK=no]) |
| 21 | +dnl PKG_CHECK_MODULES(CHECK, [check >= 0.9.4], [HAVE_CHECK=yes], [HAVE_CHECK=no]) |
| 22 | +HAVE_CHECK=no |
| 23 | AM_CONDITIONAL(HAVE_CHECK, test x$HAVE_CHECK = xyes) |
| 24 | |
| 25 | AC_CONFIG_HEADERS([src/config.h]) |