From: Cesare Tirabassi Date: Sat, 18 Jul 2009 14:07:17 +0000 (+0200) Subject: add one missing ifdef to conditionally compile weather code X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=7b38e810f2c67b71d814df1918f1102a74045e05;p=monky add one missing ifdef to conditionally compile weather code --- diff --git a/src/conky.c b/src/conky.c index 97792a6..84edfb3 100644 --- a/src/conky.c +++ b/src/conky.c @@ -8912,12 +8912,14 @@ static void load_config_file_x11(const char *f) } #endif /* X11 */ +#ifdef WEATHER /* * TODO: make the xoap keys file readable from the config file * make the keys directly readable from the config file * make the xoap keys file giveable as a command line option */ -static void load_xoap_keys(void) { +static void load_xoap_keys(void) +{ FILE *fp; char *par = (char *) malloc(11 * sizeof(char)); char *key = (char *) malloc(17 * sizeof(char)); @@ -8944,6 +8946,7 @@ static void load_xoap_keys(void) { free(par); free(key); } +#endif /* WEATHER */ static void print_help(const char *prog_name) { printf("Usage: %s [OPTION]...\n"