Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Check for presence of the sdk and ndk (the corresponding env variables to be exact) in configure.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28003 a1c6a512-1295-4272-9138-f99709370657

+10
+10
tools/configure
··· 95 95 if [ -n "$PREFIX" ]; then 96 96 echo "WARNING: PREFIX not supported on Android. You can however use --rbdir" 97 97 fi 98 + if [ -z "$ANDROID_SDK_PATH" ]; then 99 + echo "ERROR: You need the Android SDK installed and have the ANDROID_SDK_PATH" 100 + echo "environment variable point to the root directory of the Android SDK." 101 + exit 102 + fi 103 + if [ -z "$ANDROID_NDK_PATH" ]; then 104 + echo "ERROR: You need the Android NDK installed and have the ANDROID_NDK_PATH" 105 + echo "environment variable point to the root directory of the Android NDK." 106 + exit 107 + fi 98 108 rbdir="/data/data/org.rockbox/app_rockbox/rockbox" 99 109 bindir="/data/data/org.rockbox/lib" 100 110 bindir_full=$bindir