mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-15 09:23:43 +02:00
sectionsd: fix compilation after include change.
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/lib \
|
-I$(top_srcdir)/lib \
|
||||||
-I$(top_srcdir)/src/zapit/include \
|
-I$(top_srcdir)/src/zapit/include \
|
||||||
|
@@ -45,7 +45,7 @@
|
|||||||
#include "SInetworks.hpp"
|
#include "SInetworks.hpp"
|
||||||
#endif
|
#endif
|
||||||
#include "SIsections.hpp"
|
#include "SIsections.hpp"
|
||||||
#include <dmxapi.h>
|
#include "dmxapi.h"
|
||||||
|
|
||||||
const std::string languangeOFF = "OFF";
|
const std::string languangeOFF = "OFF";
|
||||||
|
|
||||||
|
@@ -42,12 +42,12 @@
|
|||||||
#include "SInetworks.hpp"
|
#include "SInetworks.hpp"
|
||||||
#endif
|
#endif
|
||||||
#include "SIsections.hpp"
|
#include "SIsections.hpp"
|
||||||
#include <dmxapi.h>
|
|
||||||
#include <zapit/dvbstring.h>
|
#include <zapit/dvbstring.h>
|
||||||
#include <edvbstring.h>
|
|
||||||
#ifdef ENABLE_FREESATEPG
|
#ifdef ENABLE_FREESATEPG
|
||||||
#include "FreesatTables.hpp"
|
#include "FreesatTables.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
#include "dmxapi.h"
|
||||||
|
#include "edvbstring.h"
|
||||||
|
|
||||||
#define NOVA 0x3ffe
|
#define NOVA 0x3ffe
|
||||||
#define CANALDIGITAAL 0x3fff
|
#define CANALDIGITAAL 0x3fff
|
||||||
|
@@ -23,9 +23,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <dmx.h>
|
|
||||||
#include <dmxapi.h>
|
|
||||||
#include <debug.h>
|
|
||||||
|
|
||||||
#include <endian.h>
|
#include <endian.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
@@ -40,6 +37,9 @@
|
|||||||
|
|
||||||
#include <driver/abstime.h>
|
#include <driver/abstime.h>
|
||||||
|
|
||||||
|
#include "dmx.h"
|
||||||
|
#include "dmxapi.h"
|
||||||
|
#include "debug.h"
|
||||||
/*
|
/*
|
||||||
#define DEBUG_MUTEX 1
|
#define DEBUG_MUTEX 1
|
||||||
#define DEBUG_CACHED_SECTIONS 1
|
#define DEBUG_CACHED_SECTIONS 1
|
||||||
|
@@ -24,17 +24,13 @@
|
|||||||
#ifndef __sectionsd__dmx_h__
|
#ifndef __sectionsd__dmx_h__
|
||||||
#define __sectionsd__dmx_h__
|
#define __sectionsd__dmx_h__
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <config.h>
|
#include <dmx.h>
|
||||||
#if HAVE_COOL_HARDWARE
|
|
||||||
#include <dmx_cs.h>
|
|
||||||
#endif
|
|
||||||
#if HAVE_TRIPLEDRAGON
|
|
||||||
#include <dmx_td.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef uint64_t sections_id_t;
|
typedef uint64_t sections_id_t;
|
||||||
typedef unsigned char version_number_t;
|
typedef unsigned char version_number_t;
|
||||||
|
@@ -30,14 +30,9 @@
|
|||||||
#include <unistd.h> /* close, read */
|
#include <unistd.h> /* close, read */
|
||||||
#include <arpa/inet.h> /* htons */
|
#include <arpa/inet.h> /* htons */
|
||||||
#include <time.h> /* ctime */
|
#include <time.h> /* ctime */
|
||||||
#include <dmxapi.h>
|
#include "dmxapi.h"
|
||||||
|
|
||||||
#if HAVE_TRIPLEDRAGON
|
|
||||||
#include <dmx_td.h>
|
|
||||||
#else
|
|
||||||
#include <dmx_cs.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
#include <dmx.h>
|
||||||
#include "SIutils.hpp"
|
#include "SIutils.hpp"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
@@ -1,9 +1,9 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <debug.h>
|
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
#include "debug.h"
|
||||||
|
|
||||||
std::map<std::string, int> CountryCodeDefaultMapping;
|
std::map<std::string, int> CountryCodeDefaultMapping;
|
||||||
std::map<int, int> TransponderDefaultMapping;
|
std::map<int, int> TransponderDefaultMapping;
|
||||||
|
@@ -29,9 +29,6 @@
|
|||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <dmxapi.h>
|
|
||||||
#include <dmx.h>
|
|
||||||
#include <debug.h>
|
|
||||||
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/un.h>
|
#include <sys/un.h>
|
||||||
@@ -88,6 +85,11 @@
|
|||||||
#include "SIlanguage.hpp"
|
#include "SIlanguage.hpp"
|
||||||
|
|
||||||
#include "edvbstring.h"
|
#include "edvbstring.h"
|
||||||
|
#include "dmxapi.h"
|
||||||
|
#include "dmx.h"
|
||||||
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
||||||
//#include "timerdclient.h"
|
//#include "timerdclient.h"
|
||||||
//#include "../timermanager.h"
|
//#include "../timermanager.h"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user