- rename HAVE_COOL_HARDWARE => HAVE_CST_HARDWARE

Conflicts:
	src/driver/rcinput.cpp
	src/gui/info_menue.cpp
	src/gui/mediaplayer.cpp
	src/gui/movieplayer.cpp
	src/zapit/src/frontend.cpp

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2020-09-03 22:07:12 +02:00
committed by Thilo Graf
parent 67650751ac
commit d29c98d7d5
34 changed files with 119 additions and 96 deletions

View File

@@ -1,8 +1,8 @@
#if HAVE_COOL_HARDWARE
#if HAVE_CST_HARDWARE
#include <audio_cs.h>
#elif USE_STB_HAL
#include <audio_hal.h>
#else
#error neither HAVE_COOL_HARDWARE nor USE_STB_HAL defined.
#error neither HAVE_CST_HARDWARE nor USE_STB_HAL defined.
#error do you need to include config.h?
#endif

View File

@@ -1,8 +1,8 @@
#if HAVE_COOL_HARDWARE
#if HAVE_CST_HARDWARE
#include <ca_cs.h>
#elif USE_STB_HAL
#include <ca_hal.h>
#else
#error neither HAVE_COOL_HARDWARE nor USE_STB_HAL defined.
#error neither HAVE_CST_HARDWARE nor USE_STB_HAL defined.
#error do you need to include config.h?
#endif

View File

@@ -1,8 +1,8 @@
#if HAVE_COOL_HARDWARE
#if HAVE_CST_HARDWARE
#include <dmx_cs.h>
#elif USE_STB_HAL
#include <dmx_hal.h>
#else
#error neither HAVE_COOL_HARDWARE nor USE_STB_HAL defined.
#error neither HAVE_CST_HARDWARE nor USE_STB_HAL defined.
#error do you need to include config.h?
#endif

View File

@@ -1,8 +1,8 @@
#if HAVE_COOL_HARDWARE
#if HAVE_CST_HARDWARE
#include <playback_cs.h>
#elif USE_STB_HAL
#include <playback_hal.h>
#else
#error neither HAVE_COOL_HARDWARE nor USE_STB_HAL defined.
#error neither HAVE_CST_HARDWARE nor USE_STB_HAL defined.
#error do you need to include config.h?
#endif

View File

@@ -1,8 +1,8 @@
#if HAVE_COOL_HARDWARE
#if HAVE_CST_HARDWARE
#include <record_cs.h>
#elif USE_STB_HAL
#include <record_hal.h>
#else
#error neither HAVE_COOL_HARDWARE nor USE_STB_HAL defined.
#error neither HAVE_CST_HARDWARE nor USE_STB_HAL defined.
#error do you need to include config.h?
#endif

View File

@@ -1,10 +1,10 @@
#if HAVE_COOL_HARDWARE
#if HAVE_CST_HARDWARE
#include <cs_api.h>
#include <video_cs.h>
#elif USE_STB_HAL
#include <init.h>
#include <video_hal.h>
#else
#error neither HAVE_COOL_HARDWARE nor USE_STB_HAL defined.
#error neither HAVE_CST_HARDWARE nor USE_STB_HAL defined.
#error do you need to include config.h?
#endif