diff options
author | FreeArtMan <dos21h@gmail.com> | 2016-05-08 16:02:01 +0100 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2016-05-08 16:02:01 +0100 |
commit | e42911405c4bc2f8c097f47d4598baf8522ef3da (patch) | |
tree | 9eb767c5e6a4443e8773b18ea76cf4216f6c8758 /src/config | |
parent | 9b95088bddcf1f83e3a8f73f08f49b38ecb0f500 (diff) | |
download | radiola-e42911405c4bc2f8c097f47d4598baf8522ef3da.tar.gz radiola-e42911405c4bc2f8c097f47d4598baf8522ef3da.zip |
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/config_bsd.h | 11 | ||||
-rw-r--r-- | src/config/config_linux.h | 14 |
2 files changed, 25 insertions, 0 deletions
diff --git a/src/config/config_bsd.h b/src/config/config_bsd.h new file mode 100644 index 0000000..f74e647 --- /dev/null +++ b/src/config/config_bsd.h @@ -0,0 +1,11 @@ +#ifndef __CONFIG_BSD_H +#define __CONFIG_BSD_H +#define CONFIG_CORE +#define CONFIG_OS_NETBSD +#define CONFIG_DRAW +#define CONFIG_HW +#define CONFIG_HW_LIB_ORIG +#define CONFIG_HW_NO_AUDIO +#define CONFIG_MOD +#define CONFIG_MOD_FM_DEMOD +#endif diff --git a/src/config/config_linux.h b/src/config/config_linux.h new file mode 100644 index 0000000..51c4a13 --- /dev/null +++ b/src/config/config_linux.h @@ -0,0 +1,14 @@ +#ifndef __CONFIG_LINUX_H +#define __CONFIG_LINUX_H +#define CONFIG_CORE +#define CONFIG_OS_LINUX +#define CONFIG_DRAW +#define CONFIG_GL +#define CONFIG_SDL2 +#define CONFIG_TUI +#define CONFIG_HW +#define CONFIG_HW_LIB_ORIG +#define CONFIG_HW_ALSA +#define CONFIG_MOD +#define CONFIG_MOD_FM_DEMOD +#endif |