From 15c5cac72198bdae8157924f9aba1b4249aad8c5 Mon Sep 17 00:00:00 2001 From: Robert Hak Date: Sat, 31 Aug 2002 20:59:23 +0000 Subject: We now ask if the user wants Screensavers (on by default) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2098 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'tools') diff --git a/tools/configure b/tools/configure index d57723eff9..b8b2f31e49 100755 --- a/tools/configure +++ b/tools/configure @@ -182,12 +182,22 @@ if [ -z "$target" ]; then fi if [ "-" = "$extra_defines" ]; then + extra_defines="" + if [ "-DARCHOS_RECORDER" = "$target" ] ; then - + + echo "Do you want to make use of Screensavers? (Y)" + getit=`input`; + if [ "n" != "$getit" ] ; then + if [ "N" != "$getit" ] ; then + extra_defines="-DUSE_SCREENSAVERS" + fi + fi + echo "Loadable fonts support? (N)" getit=`input`; if [ "y" = "$getit" -o "Y" = "$getit" ] ; then - extra_defines="-DLOADABLE_FONTS" + extra_defines="$extra_defines -DLOADABLE_FONTS" echo "*** Remember to copy the 'system.ajf' file to the root of your Archos!" else echo "Proportional font support? (N)" @@ -195,13 +205,9 @@ if [ "-" = "$extra_defines" ]; then getit=`input`; if [ "y" = "$getit" -o "Y" = "$getit" ] ; then - extra_defines="-DLCD_PROPFONTS" - else - extra_defines="" + extra_defines="$extra_defines -DLCD_PROPFONTS" fi fi - else - extra_defines="" fi fi -- cgit v1.2.3