15 lines
434 B
C
15 lines
434 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#include "file_utils.h"
|
|
|
|
#define LIBPOSTAL_DATA_DIR ".." PATH_SEPARATOR "data"
|
|
|
|
#define LIBPOSTAL_DICTIONARIES_DIR LIBPOSTAL_DATA_DIR PATH_SEPARATOR "dictionaries"
|
|
#define LIBPOSTAL_GEONAMES_DIR LIBPOSTAL_DATA_DIR PATH_SEPARATOR "geonames"
|
|
#define LIBPOSTAL_GEODB_DIR LIBPOSTAL_DATA_DIR PATH_SEPARATOR "geodb"
|
|
|
|
#define GEODB_BLOOM_FILTER_SIZE 100000000
|
|
#define GEODB_BLOOM_FILTER_ERROR 0.001
|
|
|
|
#endif |