A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

Add autoconf.h generated by configure

+77
+77
autoconf/autoconf.h
···
··· 1 + /* This header was made by configure */ 2 + #ifndef __BUILD_AUTOCONF_H 3 + #define __BUILD_AUTOCONF_H 4 + 5 + /* lower case names match the what's exported in the Makefile 6 + * upper case name looks nicer in the code */ 7 + 8 + #define arch_none 0 9 + #define ARCH_NONE 0 10 + 11 + #define arch_sh 1 12 + #define ARCH_SH 1 13 + 14 + #define arch_m68k 2 15 + #define ARCH_M68K 2 16 + 17 + #define arch_arm 3 18 + #define ARCH_ARM 3 19 + 20 + #define arch_mips 4 21 + #define ARCH_MIPS 4 22 + 23 + #define arch_x86 5 24 + #define ARCH_X86 5 25 + 26 + #define arch_amd64 6 27 + #define ARCH_AMD64 6 28 + 29 + #define ARM_PROFILE_CLASSIC 0 /* Classic ARM cores (<= ARMv6) */ 30 + #define ARM_PROFILE_MICRO 1 /* ARMv6/ARMv7+ M-profile cores */ 31 + 32 + /* Define target machine architecture */ 33 + #define ARCH arch_none 34 + /* Optionally define architecture version and/or profile */ 35 + 36 + /* Define endianess for the target or simulator platform */ 37 + #define ROCKBOX_LITTLE_ENDIAN 1 38 + 39 + /* Define the GCC version used for the build */ 40 + #define GCCNUM 1502 41 + 42 + /* Define this if you build rockbox to support the logf logging and display */ 43 + #undef ROCKBOX_HAS_LOGF 44 + 45 + /* Define this if you want logf to output to the serial port */ 46 + #undef LOGF_SERIAL 47 + 48 + /* Define this to record a chart with timings for the stages of boot */ 49 + #undef DO_BOOTCHART 50 + 51 + /* optional define for FM radio mod for iAudio M5 */ 52 + 53 + /* optional define for USB Serial */ 54 + 55 + /* optional defines for RTC mod for h1x0 */ 56 + 57 + /* the threading backend we use */ 58 + #define HAVE_SIGALTSTACK_THREADS 59 + 60 + /* lcd dimensions for application builds from configure */ 61 + #define LCD_WIDTH 320 62 + #define LCD_HEIGHT 240 63 + 64 + /* root of Rockbox */ 65 + #define ROCKBOX_DIR "/.rockbox" 66 + #define ROCKBOX_SHARE_PATH "/usr/local/share/rockbox" 67 + #define ROCKBOX_BINARY_PATH "/usr/local/bin" 68 + #define ROCKBOX_LIBRARY_PATH "/usr/local/lib" 69 + 70 + #define CONFIG_SERVER 71 + #define ZIG_APP 72 + #define ROCKBOX_SERVER 73 + 74 + /* linker feature test macro for validating cross-section references */ 75 + #undef HAVE_NOCROSSREFS_TO 76 + 77 + #endif /* __BUILD_AUTOCONF_H */