From b67d741336e2ee74e78c271fe5c1994c806ff2fb Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Tue, 14 Oct 2014 14:17:34 +0200 Subject: [PATCH] configure: fix hdhomerun check condition, fix compilation --- configure | 2 +- src/input/mpegts.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 80b27c28..441257ad 100755 --- a/configure +++ b/configure @@ -230,7 +230,7 @@ fi # HDHomeRun - libhdhomerun # if enabled_or_auto hdhomerun_client; then - if check_cc_lib hdhomerun; then + if ! check_cc_lib hdhomerun; then enable hdhomerun_client LDFLAGS="$LDFLAGS -lhdhomerun" fi diff --git a/src/input/mpegts.c b/src/input/mpegts.c index a5022e17..7a105bb8 100644 --- a/src/input/mpegts.c +++ b/src/input/mpegts.c @@ -91,7 +91,7 @@ mpegts_done ( void ) #if ENABLE_SATIP_CLIENT tvhftrace("main", satip_done); #endif -#if ENABLE_HDHOMERUN +#if ENABLE_HDHOMERUN_CLIENT tvhftrace("main", tvhdhomerun_done); #endif #if ENABLE_TSFILE