acinclude/configure: rework HAVE_LIBSTB_HAL handling; drop USE_STB_HAL

Origin commit data
------------------
Branch: ni/coolstream
Commit: b00ccf15a1
Author: vanhofen <vanhofen@gmx.de>
Date: 2023-01-28 (Sat, 28 Jan 2023)

Origin message was:
------------------
- acinclude/configure: rework HAVE_LIBSTB_HAL handling; drop USE_STB_HAL

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2023-01-28 12:06:17 +01:00
parent d12834b470
commit 3060fd2a1e
13 changed files with 35 additions and 42 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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