From: Jaroslav Kysela Date: Tue, 14 Oct 2014 12:17:34 +0000 (+0200) Subject: configure: fix hdhomerun check condition, fix compilation X-Git-Tag: v4.1~1022 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b67d741336e2ee74e78c271fe5c1994c806ff2fb;p=thirdparty%2Ftvheadend.git configure: fix hdhomerun check condition, fix compilation --- diff --git a/configure b/configure index 80b27c282..441257ade 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 a5022e172..7a105bb84 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