mod_tile: Move map style & font location into render_config.h. Fix up operation with non-metatile rendering. Several utilities are not implemented for non-metatile (render_list, render_old, speedtest).

This commit is contained in:
Jon Burgess
2008-06-23 21:55:47 +00:00
parent b1f2b3b516
commit 4794bbc6ca
11 changed files with 103 additions and 32 deletions

View File

@ -22,6 +22,15 @@
#include "dir_utils.h"
#include "store.h"
#ifndef METATILE
#warning("convert_meta not implemented for non-metatile mode. Feel free to submit fix")
int main(int argc, char **argv)
{
fprintf(stderr, "convert_meta not implemented for non-metatile mode. Feel free to submit fix!\n");
return -1;
}
#else
static int minZoom = 0;
static int maxZoom = 18;
static int verbose = 0;
@ -162,3 +171,4 @@ int main(int argc, char **argv)
return 0;
}
#endif