diff options
author | Rosen Penev <rosenp@gmail.com> | 2019-03-30 01:48:17 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2019-03-30 01:48:17 -0700 |
commit | 19e9bdb0aaceadc6c47176a938264326e776b51f (patch) | |
tree | 8925c158a58be8c0349b934977ad72bc8a08d548 /net/lcdringer/patches | |
parent | 199f0b5c517437601a585f78edb57c92f3bab0ef (diff) |
lcdringer: Remove libcheck dependency to fix compilation
libcheck is some kind of testing framework. it is not only unnecessary, it
is not even used in the code.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'net/lcdringer/patches')
-rw-r--r-- | net/lcdringer/patches/010-disable-check.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/net/lcdringer/patches/010-disable-check.patch b/net/lcdringer/patches/010-disable-check.patch new file mode 100644 index 000000000..b07960983 --- /dev/null +++ b/net/lcdringer/patches/010-disable-check.patch @@ -0,0 +1,12 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -87,9 +87,6 @@ fi + AC_SUBST(GSTREAMER_CFLAGS) + AC_SUBST(GSTREAMER_LIBS) + +-PKG_CHECK_MODULES([CHECK], [check >= 0.9.4],have_check=yes,have_check=no) +-AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes") +- + AM_PROG_VALAC([0.11.4]) + AM_CONDITIONAL(HAVE_VALAC, test -x "$VALAC") + |