forked from len0rd/rockbox
Corrected to allow for game removal via USE_GAMES (on by default)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2104 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d97423527f
commit
28c60ff40a
1 changed files with 13 additions and 4 deletions
17
tools/configure
vendored
17
tools/configure
vendored
|
|
@ -186,12 +186,20 @@ if [ "-" = "$extra_defines" ]; then
|
|||
|
||||
if [ "-DARCHOS_RECORDER" = "$target" ] ; then
|
||||
|
||||
echo "Do you want to make use of Screensavers? (Y)"
|
||||
echo "Do you want to use Screensavers? (Y)"
|
||||
getit=`input`;
|
||||
if [ "n" = "$getit" -o "N" = "$getit" ] ; then
|
||||
extra_defines=""
|
||||
extra_defines="$extra_defines"
|
||||
else
|
||||
extra_defines="-DUSE_SCREENSAVERS"
|
||||
extra_defines="$extra_defines -DUSE_SCREENSAVERS"
|
||||
fi
|
||||
|
||||
echo "Do you want to play Games? (Y)"
|
||||
getit=`input`;
|
||||
if [ "n" = "$getit" -o "N" = "$getit" ] ; then
|
||||
extra_defines="$extra_defines"
|
||||
else
|
||||
extra_defines="$extra_defines -DUSE_GAMES"
|
||||
fi
|
||||
|
||||
echo "Loadable fonts support? (N)"
|
||||
|
|
@ -211,6 +219,7 @@ if [ "-" = "$extra_defines" ]; then
|
|||
fi
|
||||
fi
|
||||
|
||||
|
||||
if [ -z "$debug" ]; then
|
||||
##################################################################
|
||||
# Figure out debug on/off
|
||||
|
|
@ -286,7 +295,7 @@ sed > Makefile \
|
|||
-e "s,@APPSDIR@,${appsdir},g" \
|
||||
-e "s,@DEBUG@,${debug},g" \
|
||||
-e "s,@TARGET@,${target},g" \
|
||||
-e "s,@EXTRA_DEFINES@,${extra_defines},g" \
|
||||
-e "s,@EXTRA_DEFINES@,\"${extra_defines}\",g" \
|
||||
-e "s,@PWD@,${pwd},g" \
|
||||
<<EOF
|
||||
## Automaticly generated. http://rockbox.haxx.se
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue