Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
configure: fix hdhomerun check condition, fix compilation
  • Loading branch information
perexg committed Oct 14, 2014
1 parent cef28a6 commit b67d741
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/input/mpegts.c
Expand Up @@ -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
Expand Down

0 comments on commit b67d741

Please sign in to comment.