diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-09-03 00:29:40 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-09-03 00:29:40 +0100 |
commit | 2a551c907b3fd0c282bce46970066cfd402a594c (patch) | |
tree | c901e9b084900cf7e169848aeb54991a3a6da0a4 /p2pvr/devices | |
parent | Use libadhocutil (diff) | |
download | p2pvr-2a551c907b3fd0c282bce46970066cfd402a594c.tar.bz2 p2pvr-2a551c907b3fd0c282bce46970066cfd402a594c.tar.xz p2pvr-2a551c907b3fd0c282bce46970066cfd402a594c.zip |
Use libadhocutil
Diffstat (limited to 'p2pvr/devices')
-rw-r--r-- | p2pvr/devices/Jamfile.jam | 2 | ||||
-rw-r--r-- | p2pvr/devices/tuner.cpp | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/p2pvr/devices/Jamfile.jam b/p2pvr/devices/Jamfile.jam index 8e18afa..f39256b 100644 --- a/p2pvr/devices/Jamfile.jam +++ b/p2pvr/devices/Jamfile.jam @@ -23,6 +23,7 @@ lib p2pvrdevices : <library>../ice//p2pvrice <library>../lib//p2pvrlib <library>..//p2common + <library>..//adhocutil <implicit-dependency>../ice//p2pvrice : : <library>boost_filesystem @@ -56,6 +57,7 @@ lib p2pvrMockTuner : <library>../ice//p2pvrice <library>../lib//p2pvrlib <library>..//p2common + <library>..//adhocutil <implicit-dependency>../ice//p2pvrice : : <library>boost_filesystem diff --git a/p2pvr/devices/tuner.cpp b/p2pvr/devices/tuner.cpp index ee1625a..ea3ccad 100644 --- a/p2pvr/devices/tuner.cpp +++ b/p2pvr/devices/tuner.cpp @@ -5,7 +5,6 @@ #include <sys/ioctl.h> #include <poll.h> #include <logger.h> -#include <misc.h> #include <plugable.h> #include <linux/dvb/frontend.h> #include <linux/dvb/dmx.h> @@ -18,7 +17,8 @@ class FrontendNotSupported : public NotSupported { public: FrontendNotSupported(fe_type t) : NotSupported(stringbf("Frontend not supported: %s", t)) - { } + { + } }; Tuner::Tuner(const boost::filesystem::path & df) : |