diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-09-06 06:41:39 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-09-06 06:41:39 +0000 |
| commit | d0cd07237ae7ce0c9a074ec3215a836947e75e53 (patch) | |
| tree | ce69b78a11f2b7320fee702ddc5983ca00bdee73 | |
| parent | d851531d0817858f86fccf000edf50e1bb1ee3df (diff) | |
| download | rockbox-d0cd07237ae7ce0c9a074ec3215a836947e75e53.zip rockbox-d0cd07237ae7ce0c9a074ec3215a836947e75e53.tar.gz rockbox-d0cd07237ae7ce0c9a074ec3215a836947e75e53.tar.bz2 rockbox-d0cd07237ae7ce0c9a074ec3215a836947e75e53.tar.xz | |
include features.h for deciding which features to include
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2202 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/recorder/blank.c | 1 | ||||
| -rw-r--r-- | apps/recorder/bounce.c | 1 | ||||
| -rw-r--r-- | apps/recorder/boxes.c | 1 | ||||
| -rw-r--r-- | apps/recorder/sokoban.c | 1 | ||||
| -rw-r--r-- | apps/recorder/tetris.c | 1 | ||||
| -rw-r--r-- | apps/recorder/wormlet.c | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/apps/recorder/blank.c b/apps/recorder/blank.c index e85993c..985dc89 100644 --- a/apps/recorder/blank.c +++ b/apps/recorder/blank.c @@ -18,6 +18,7 @@ ****************************************************************************/ #include "config.h" +#include "features.h" #ifdef USE_SCREENSAVERS diff --git a/apps/recorder/bounce.c b/apps/recorder/bounce.c index bb238ff..0d9ecdd 100644 --- a/apps/recorder/bounce.c +++ b/apps/recorder/bounce.c @@ -18,6 +18,7 @@ ****************************************************************************/ #include "config.h" +#include "features.h" #ifdef USE_SCREENSAVERS diff --git a/apps/recorder/boxes.c b/apps/recorder/boxes.c index 4eae16b..c087507 100644 --- a/apps/recorder/boxes.c +++ b/apps/recorder/boxes.c @@ -18,6 +18,7 @@ ****************************************************************************/ #include "config.h" +#include "features.h" #ifdef USE_SCREENSAVERS diff --git a/apps/recorder/sokoban.c b/apps/recorder/sokoban.c index 4b30cbe..9230472 100644 --- a/apps/recorder/sokoban.c +++ b/apps/recorder/sokoban.c @@ -18,6 +18,7 @@ ****************************************************************************/ #include "config.h" +#include "features.h" #ifdef USE_GAMES #include <sprintf.h> diff --git a/apps/recorder/tetris.c b/apps/recorder/tetris.c index 0df577f..d97a675 100644 --- a/apps/recorder/tetris.c +++ b/apps/recorder/tetris.c @@ -20,6 +20,7 @@ ****************************************************************************/ #include "config.h" +#include "features.h" #ifdef USE_GAMES diff --git a/apps/recorder/wormlet.c b/apps/recorder/wormlet.c index 12b5415..b403cf3 100644 --- a/apps/recorder/wormlet.c +++ b/apps/recorder/wormlet.c @@ -18,6 +18,7 @@ ****************************************************************************/ #include "config.h" +#include "features.h" #ifdef USE_GAMES |