spark: fix build by using correct includes

This commit is contained in:
Stefan Seyfried
2012-02-11 19:15:42 +01:00
parent 6f5e4238cc
commit c3f8a7f530
4 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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