diff options
-rw-r--r-- | eepg.c | 2 | ||||
-rw-r--r-- | epghandler.c | 2 | ||||
-rw-r--r-- | epghandler.h | 1 |
3 files changed, 4 insertions, 1 deletions
@@ -38,7 +38,9 @@ #include <libsi/si.h> #include "eepg.h" #include "dish.h" +#if APIVERSNUM > 10725 #include "epghandler.h" +#endif #include "log.h" #include "setupeepg.h" diff --git a/epghandler.c b/epghandler.c index 36aaf74..515ae6c 100644 --- a/epghandler.c +++ b/epghandler.c @@ -5,8 +5,8 @@ * Author: d.petrovski */ -#if APIVERSNUM > 10725 #include "epghandler.h" +#if APIVERSNUM > 10725 #include "log.h" cEEpgHandler::cEEpgHandler() { diff --git a/epghandler.h b/epghandler.h index 8d3615a..07862ce 100644 --- a/epghandler.h +++ b/epghandler.h @@ -7,6 +7,7 @@ #ifndef CEEPGHANDLER_H_ #define CEEPGHANDLER_H_ +#include <vdr/config.h> #if APIVERSNUM > 10725 #include <vdr/epg.h> #include <string> |