mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 15:02:43 +02:00
Origin commit data
------------------
Branch: master
Commit: 6254833c17
Author: max_10 <max_10@gmx.de>
Date: 2020-10-01 (Thu, 01 Oct 2020)
Origin message was:
------------------
- TRIPLEDRAGON: libtriple deleted
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
19 lines
453 B
C
19 lines
453 B
C
#include <config.h>
|
|
#if 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_MIPS_HARDWARE
|
|
#include "../libmipsbox/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 no valid hardware defined
|
|
#endif
|