spark: fix build by using correct includes

Origin commit data
------------------
Commit: c3f8a7f530
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-02-11 (Sat, 11 Feb 2012)
This commit is contained in:
Stefan Seyfried
2012-02-11 19:15:42 +01:00
parent f4ca017923
commit 523e022a1c
4 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@
#include <record_cs.h>
#include <driver/vfd.h>
#endif
#if HAVE_TRIPLEDRAGON
#if HAVE_TRIPLEDRAGON || USE_STB_HAL
#include <record_td.h>
#include <driver/lcdd.h>
#endif

View File

@@ -226,7 +226,7 @@ CNeutrinoApp::CNeutrinoApp()
frameBuffer = CFrameBuffer::getInstance();
frameBuffer->setIconBasePath(DATADIR "/neutrino/icons/");
#if HAVE_TRIPLEDRAGON
#if HAVE_TRIPLEDRAGON || USE_STB_HAL
/* this needs to happen before the framebuffer is set up */
init_td_api();
// shutdown_td_api();

View File

@@ -32,7 +32,7 @@
#if HAVE_COOL_HARDWARE
#include <dmx_cs.h>
#endif
#if HAVE_TRIPLEDRAGON
#if HAVE_TRIPLEDRAGON || USE_STB_HAL
#include <dmx_td.h>
#endif

View File

@@ -1,6 +1,6 @@
#if HAVE_COOL_HARDWARE
#include <audio_cs.h>
#endif
#if HAVE_TRIPLEDRAGON
#if HAVE_TRIPLEDRAGON || USE_STB_HAL
#include <audio_td.h>
#endif