mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
Origin commit data
------------------
Branch: master
Commit: 52caa02ddc
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-12-23 (Sun, 23 Dec 2018)
Origin message was:
------------------
- align includes and Makefiles to directory changes
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
21 lines
544 B
C
21 lines
544 B
C
#include <config.h>
|
|
#if HAVE_TRIPLEDRAGON
|
|
#include "../libtriple/record_td.h"
|
|
#elif HAVE_DUCKBOX_HARDWARE
|
|
#include "../libduckbox/record_lib.h"
|
|
#elif HAVE_SPARK_HARDWARE
|
|
#include "../libspark/record_lib.h"
|
|
#elif HAVE_ARM_HARDWARE
|
|
#include "../libarmbox/record_lib.h"
|
|
#elif HAVE_AZBOX_HARDWARE
|
|
#include "../libazbox/record_lib.h"
|
|
#elif HAVE_GENERIC_HARDWARE
|
|
#if BOXMODEL_RASPI
|
|
#include "../libraspi/record_lib.h"
|
|
#else
|
|
#include "../libgeneric-pc/record_lib.h"
|
|
#endif
|
|
#else
|
|
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
|
|
#endif
|