summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-08-31 20:59:23 +0000
committerRobert Hak <adiamas@rockbox.org>2002-08-31 20:59:23 +0000
commit15c5cac72198bdae8157924f9aba1b4249aad8c5 (patch)
treec257303da58364212712d7d061acbc3901e082db
parent1b9109aba276a4fd33acdc81b81b6f924513a2fa (diff)
downloadrockbox-15c5cac72198bdae8157924f9aba1b4249aad8c5.tar.gz
rockbox-15c5cac72198bdae8157924f9aba1b4249aad8c5.zip
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
-rwxr-xr-xtools/configure20
1 files changed, 13 insertions, 7 deletions
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
182fi 182fi
183 183
184if [ "-" = "$extra_defines" ]; then 184if [ "-" = "$extra_defines" ]; then
185 extra_defines=""
186
185 if [ "-DARCHOS_RECORDER" = "$target" ] ; then 187 if [ "-DARCHOS_RECORDER" = "$target" ] ; then
186 188
189 echo "Do you want to make use of Screensavers? (Y)"
190 getit=`input`;
191 if [ "n" != "$getit" ] ; then
192 if [ "N" != "$getit" ] ; then
193 extra_defines="-DUSE_SCREENSAVERS"
194 fi
195 fi
196
187 echo "Loadable fonts support? (N)" 197 echo "Loadable fonts support? (N)"
188 getit=`input`; 198 getit=`input`;
189 if [ "y" = "$getit" -o "Y" = "$getit" ] ; then 199 if [ "y" = "$getit" -o "Y" = "$getit" ] ; then
190 extra_defines="-DLOADABLE_FONTS" 200 extra_defines="$extra_defines -DLOADABLE_FONTS"
191 echo "*** Remember to copy the 'system.ajf' file to the root of your Archos!" 201 echo "*** Remember to copy the 'system.ajf' file to the root of your Archos!"
192 else 202 else
193 echo "Proportional font support? (N)" 203 echo "Proportional font support? (N)"
@@ -195,13 +205,9 @@ if [ "-" = "$extra_defines" ]; then
195 getit=`input`; 205 getit=`input`;
196 206
197 if [ "y" = "$getit" -o "Y" = "$getit" ] ; then 207 if [ "y" = "$getit" -o "Y" = "$getit" ] ; then
198 extra_defines="-DLCD_PROPFONTS" 208 extra_defines="$extra_defines -DLCD_PROPFONTS"
199 else
200 extra_defines=""
201 fi 209 fi
202 fi 210 fi
203 else
204 extra_defines=""
205 fi 211 fi
206fi 212fi
207 213