diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2006-03-18 21:17:05 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2006-03-18 21:17:05 +0000 |
| commit | 2624b558cefe8f677949573c6bfb93ae11783c79 (patch) | |
| tree | 8711646ce20eb3d0b91fdea46d77a16cff94f244 | |
| parent | c279335ed24f64a55bd1c1679656ed90d687e190 (diff) | |
| download | rockbox-2624b558cefe8f677949573c6bfb93ae11783c79.zip rockbox-2624b558cefe8f677949573c6bfb93ae11783c79.tar.gz rockbox-2624b558cefe8f677949573c6bfb93ae11783c79.tar.bz2 rockbox-2624b558cefe8f677949573c6bfb93ae11783c79.tar.xz | |
only use the LCD size for bitmap LCDs so that we don't get the WPSes
for recorder included for the player builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9102 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | wps/wpsbuild.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wps/wpsbuild.pl b/wps/wpsbuild.pl index d6cff68..548b469 100755 --- a/wps/wpsbuild.pl +++ b/wps/wpsbuild.pl @@ -55,8 +55,10 @@ STOP else { print GCC <<STOP \#include "config.h" +#ifdef HAVE_LCD_BITMAP Height: LCD_HEIGHT Width: LCD_WIDTH +#endif STOP ; } @@ -192,7 +194,7 @@ while(<WPS>) { } if(!$rheight || !$rwidth) { - printf STDERR "wpsbuild notice: No %sLCD size, skipping $wps\n", + #printf STDERR "wpsbuild notice: No %sLCD size, skipping $wps\n", $isrwps?"remote ":""; $within = 0; next; |