summaryrefslogtreecommitdiff
path: root/navit/main.c
blob: 550483a41ceacf69690b9416021b0920c9a2f996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/**
 * Navit, a modular navigation system.
 * Copyright (C) 2005-2008 Navit Team
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 */

#include <locale.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <glib.h>
#include <sys/types.h>

#include "config.h"

#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

#ifndef _WIN32
#include <sys/wait.h>
#include <signal.h>
#endif

#include "file.h"
#include "debug.h"
#include "main.h"
#include "navit.h"
#include "gui.h"
#include "item.h"
#include "xmlconfig.h"
#include "coord.h"
#include "route.h"
#include "navigation.h"
#include "event.h"
#include "callback.h"
#include "navit_nls.h"
#include "util.h"
#ifdef HAVE_API_WIN32_BASE
#include <windows.h>
#include <winbase.h>
#endif

#ifdef HAVE_API_WIN32_CE
#include "libc.h"
#endif

struct map_data *map_data_default;

struct callback_list *cbl;

#ifdef HAVE_API_WIN32
void setenv(char *var, char *val, int overwrite) {
    char *str=g_strdup_printf("%s=%s",var,val);
    if (overwrite || !getenv(var))
        putenv(str);
    g_free(str);
}
#endif

/*
 * @def environment_vars
 *
 * @brief Environment variables automatically added (and expanded) by navit at startup
 *
 * A NUL-terminated string array
 * environment_vars[0] is the name of the variable
 * environment_vars[1] is the value used when running from source dir
 * environment_vars[2] is the value used on Linux
 * environment_vars[3] is the value used on Windows CE (see main_init())
 * environment_vars[4] is the value used on Android
 * environment_vars[5] is the value used on Windows
 * ':'  is replaced with NAVIT_PREFIX
 * '::' is replaced with NAVIT_PREFIX and LIBDIR
 * '~'  is replaced with HOME on Linux, or USERPROFILE on Windows (not on Windows CE)
*/

static char *environment_vars[][6]= {
    {"NAVIT_LIBDIR",      ":",          ":/"LIB_DIR,     ":\\lib",      ":/lib",        ":\\lib"},
    {"NAVIT_SHAREDIR",    ":",          ":/"SHARE_DIR,   ":",           ":/share",      ":"},
    {"NAVIT_LOCALEDIR",   ":/../locale",":/"LOCALE_DIR,  ":\\locale",   ":/locale",     ":\\locale"},
    {"NAVIT_USER_DATADIR",":",          "~/"HOMECONFIG_DIR,      ":\\data",     ":/home",       "~\\navit"},
    {"NAVIT_LOGFILE",     NULL,         NULL,            ":\\navit.log",NULL,           ":\\navit.log"},
    {"NAVIT_LIBPREFIX",   "*/.libs/",   NULL,            NULL,          NULL,           NULL},
    {NULL,                NULL,         NULL,            NULL,          NULL,           NULL},
};

static void main_setup_environment(int mode) {
    int i=0;
    char *var,*val,*homedir;
    while ((var=environment_vars[i][0])) {
        val=environment_vars[i][mode+1];
        if (val) {
            switch (val[0]) {
            case ':':
                if (val[1] == ':')
                    val=g_strdup_printf("%s/%s%s", getenv("NAVIT_PREFIX"), LIBDIR+sizeof(PREFIX), val+2);
                else
                    val=g_strdup_printf("%s%s", getenv("NAVIT_PREFIX"), val+1);
                break;
            case '~':
#if defined(HAVE_API_WIN32) && !defined(HAVE_API_WIN32_CE) // For Windows only, excluding WinCE
                homedir=getenv("USERPROFILE");
#else
                homedir=getenv("HOME");
#endif
                if (!homedir)
                    homedir="./";
                val=g_strdup_printf("%s%s", homedir, val+1);
                break;
            default:
                val=g_strdup(val);
                break;
            }
            setenv(var, val, 0);
            g_free(val);
        }
        i++;
    }
#if defined(HAVE_API_WIN32) && !defined(HAVE_API_WIN32_CE) // For Windows only, excluding WinCE
    navit_get_user_data_directory(1); /* Create the user data directory */
#endif
}

#ifdef HAVE_API_WIN32_BASE
char *nls_table[][3]= {
    // NLS Table compiled by Nick "Number6" Geoghegan
    // Not an exhaustive list, but supports 99% of all languages in Windows
    //{"LANGNAME", "CTRYNAME", "Language Code"},
    {"AFK", "ZAF", "af_ZA"},	// Afrikaans (South Africa)
    {"SQI", "ALB", "sq_AL"},	// Albanian (Albania)
    {"AMH", "ETH", "am_ET"},	// Amharic (Ethiopia)
    {"ARG", "DZA", "ar_DZ"},	// Arabic (Algeria)
    {"ARH", "BHR", "ar_BH"},	// Arabic (Bahrain)
    {"ARE", "EGY", "ar_EG"},	// Arabic (Egypt)
    {"ARI", "IRQ", "ar_IQ"},	// Arabic (Iraq)
    {"ARJ", "JOR", "ar_JO"},	// Arabic (Jordan)
    {"ARK", "KWT", "ar_KW"},	// Arabic (Kuwait)
    {"ARB", "LBN", "ar_LB"},	// Arabic (Lebanon)
    {"ARL", "LBY", "ar_LY"},	// Arabic (Libya)
    {"ARM", "MAR", "ar_MA"},	// Arabic (Morocco)
    {"ARO", "OMN", "ar_OM"},	// Arabic (Oman)
    {"ARQ", "QAT", "ar_QA"},	// Arabic (Qatar)
    {"ARA", "SAU", "ar_SA"},	// Arabic (Saudi Arabia)
    {"ARS", "SYR", "ar_SY"},	// Arabic (Syria)
    {"ART", "TUN", "ar_TN"},	// Arabic (Tunisia)
    {"ARU", "ARE", "ar_AE"},	// Arabic (U.A.E.)
    {"ARY", "YEM", "ar_YE"},	// Arabic (Yemen)
    {"HYE", "ARM", "hy_AM"},	// Armenian (Armenia)
    {"ASM", "IND", "as_IN"},	// Assamese (India)
    {"BAS", "RUS", "ba_RU"},	// Bashkir (Russia)
    {"EUQ", "ESP", "eu_ES"},	// Basque (Basque)
    {"BEL", "BLR", "be_BY"},	// Belarusian (Belarus)
    {"BNG", "BDG", "bn_BD"},	// Bengali (Bangladesh)
    {"BNG", "IND", "bn_IN"},	// Bengali (India)
    {"BRE", "FRA", "br_FR"},	// Breton (France)
    {"BGR", "BGR", "bg_BG"},	// Bulgarian (Bulgaria)
    {"CAT", "ESP", "ca_ES"},	// Catalan (Catalan)
    {"ZHH", "HKG", "zh_HK"},	// Chinese (Hong Kong S.A.R.)
    {"ZHM", "MCO", "zh_MO"},	// Chinese (Macao S.A.R.)
    {"CHS", "CHN", "zh_CN"},	// Chinese (People's Republic of China)
    {"ZHI", "SGP", "zh_SG"},	// Chinese (Singapore)
    {"CHT", "TWN", "zh_TW"},	// Chinese (Taiwan)
    {"COS", "FRA", "co_FR"},	// Corsican (France)
    {"HRV", "HRV", "hr_HR"},	// Croatian (Croatia)
    {"HRB", "BIH", "hr_BA"},	// Croatian (Latin, Bosnia and Herzegovina)
    {"CSY", "CZE", "cs_CZ"},	// Czech (Czech Republic)
    {"DAN", "DNK", "da_DK"},	// Danish (Denmark)
    {"NLB", "BEL", "nl_BE"},	// Dutch (Belgium)
    {"NLD", "NLD", "nl_NL"},	// Dutch (Netherlands)
    {"ENA", "AUS", "en_AU"},	// English (Australia)
    {"ENL", "BLZ", "en_BZ"},	// English (Belize)
    {"ENC", "CAN", "en_CA"},	// English (Canada)
    {"ENB", "CAR", "en_CB"},	// English (Caribbean)
    {"ENN", "IND", "en_IN"},	// English (India)
    {"ENI", "IRL", "en_IE"},	// English (Ireland)
    {"ENJ", "JAM", "en_JM"},	// English (Jamaica)
    {"ENM", "MYS", "en_MY"},	// English (Malaysia)
    {"ENZ", "NZL", "en_NZ"},	// English (New Zealand)
    {"ENP", "PHL", "en_PH"},	// English (Republic of the Philippines)
    {"ENE", "SGP", "en_SG"},	// English (Singapore)
    {"ENS", "ZAF", "en_ZA"},	// English (South Africa)
    {"ENT", "TTO", "en_TT"},	// English (Trinidad and Tobago)
    {"ENG", "GBR", "en_GB"},	// English (United Kingdom)
    {"ENU", "USA", "en_US"},	// English (United States)
    {"ENW", "ZWE", "en_ZW"},	// English (Zimbabwe)
    {"ETI", "EST", "et_EE"},	// Estonian (Estonia)
    {"FOS", "FRO", "fo_FO"},	// Faroese (Faroe Islands)
    {"FIN", "FIN", "fi_FI"},	// Finnish (Finland)
    {"FRB", "BEL", "fr_BE"},	// French (Belgium)
    {"FRC", "CAN", "fr_CA"},	// French (Canada)
    {"FRA", "FRA", "fr_FR"},	// French (France)
    {"FRL", "LUX", "fr_LU"},	// French (Luxembourg)
    {"FRM", "MCO", "fr_MC"},	// French (Principality of Monaco)
    {"FRS", "CHE", "fr_CH"},	// French (Switzerland)
    {"FYN", "NLD", "fy_NL"},	// Frisian (Netherlands)
    {"GLC", "ESP", "gl_ES"},	// Galician (Galician)
    {"KAT", "GEO", "ka_GE"},	// Georgian (Georgia)
    {"DEA", "AUT", "de_AT"},	// German (Austria)
    {"DEU", "DEU", "de_DE"},	// German (Germany)
    {"DEC", "LIE", "de_LI"},	// German (Liechtenstein)
    {"DEL", "LUX", "de_LU"},	// German (Luxembourg)
    {"DES", "CHE", "de_CH"},	// German (Switzerland)
    {"ELL", "GRC", "el_GR"},	// Greek (Greece)
    {"KAL", "GRL", "kl_GL"},	// Greenlandic (Greenland)
    {"GUJ", "IND", "gu_IN"},	// Gujarati (India)
    {"HEB", "ISR", "he_IL"},	// Hebrew (Israel)
    {"HIN", "IND", "hi_IN"},	// Hindi (India)
    {"HUN", "HUN", "hu_HU"},	// Hungarian (Hungary)
    {"ISL", "ISL", "is_IS"},	// Icelandic (Iceland)
    {"IBO", "NGA", "ig_NG"},	// Igbo (Nigeria)
    {"IND", "IDN", "id_ID"},	// Indonesian (Indonesia)
    {"IRE", "IRL", "ga_IE"},	// Irish (Ireland)
    {"XHO", "ZAF", "xh_ZA"},	// isiXhosa (South Africa)
    {"ZUL", "ZAF", "zu_ZA"},	// isiZulu (South Africa)
    {"ITA", "ITA", "it_IT"},	// Italian (Italy)
    {"ITS", "CHE", "it_CH"},	// Italian (Switzerland)
    {"JPN", "JPN", "ja_JP"},	// Japanese (Japan)
    {"KDI", "IND", "kn_IN"},	// Kannada (India)
    {"KKZ", "KAZ", "kk_KZ"},	// Kazakh (Kazakhstan)
    {"KHM", "KHM", "km_KH"},	// Khmer (Cambodia)
    {"KIN", "RWA", "rw_RW"},	// Kinyarwanda (Rwanda)
    {"SWK", "KEN", "sw_KE"},	// Kiswahili (Kenya)
    {"KOR", "KOR", "ko_KR"},	// Korean (Korea)
    {"KYR", "KGZ", "ky_KG"},	// Kyrgyz (Kyrgyzstan)
    {"LAO", "LAO", "lo_LA"},	// Lao (Lao P.D.R.)
    {"LVI", "LVA", "lv_LV"},	// Latvian (Latvia)
    {"LTH", "LTU", "lt_LT"},	// Lithuanian (Lithuania)
    {"LBX", "LUX", "lb_LU"},	// Luxembourgish (Luxembourg)
    {"MKI", "MKD", "mk_MK"},	// Macedonian (Former Yugoslav Republic of Macedonia)
    {"MSB", "BRN", "ms_BN"},	// Malay (Brunei Darussalam)
    {"MSL", "MYS", "ms_MY"},	// Malay (Malaysia)
    {"MYM", "IND", "ml_IN"},	// Malayalam (India)
    {"MLT", "MLT", "mt_MT"},	// Maltese (Malta)
    {"MRI", "NZL", "mi_NZ"},	// Maori (New Zealand)
    {"MAR", "IND", "mr_IN"},	// Marathi (India)
    {"MON", "MNG", "mn_MN"},	// Mongolian (Cyrillic, Mongolia)
    {"NEP", "NEP", "ne_NP"},	// Nepali (Nepal)
    {"NOR", "NOR", "nb_NO"},	// Norwegian, Bokmå(Norway)
    {"NON", "NOR", "nn_NO"},	// Norwegian, Nynorsk (Norway)
    {"OCI", "FRA", "oc_FR"},	// Occitan (France)
    {"ORI", "IND", "or_IN"},	// Oriya (India)
    {"PAS", "AFG", "ps_AF"},	// Pashto (Afghanistan)
    {"FAR", "IRN", "fa_IR"},	// Persian
    {"PLK", "POL", "pl_PL"},	// Polish (Poland)
    {"PTB", "BRA", "pt_BR"},	// Portuguese (Brazil)
    {"PTG", "PRT", "pt_PT"},	// Portuguese (Portugal)
    {"PAN", "IND", "pa_IN"},	// Punjabi (India)
    {"ROM", "ROM", "ro_RO"},	// Romanian (Romania)
    {"RMC", "CHE", "rm_CH"},	// Romansh (Switzerland)
    {"RUS", "RUS", "ru_RU"},	// Russian (Russia)
    {"SMG", "FIN", "se_FI"},	// Sami, Northern (Finland)
    {"SME", "NOR", "se_NO"},	// Sami, Northern (Norway)
    {"SMF", "SWE", "se_SE"},	// Sami, Northern (Sweden)
    {"SAN", "IND", "sa_IN"},	// Sanskrit (India)
    {"TSN", "ZAF", "tn_ZA"},	// Setswana (South Africa)
    {"SIN", "LKA", "si_LK"},	// Sinhala (Sri Lanka)
    {"SKY", "SVK", "sk_SK"},	// Slovak (Slovakia)
    {"SLV", "SVN", "sl_SI"},	// Slovenian (Slovenia)
    {"ESS", "ARG", "es_AR"},	// Spanish (Argentina)
    {"ESB", "BOL", "es_BO"},	// Spanish (Bolivia)
    {"ESL", "CHL", "es_CL"},	// Spanish (Chile)
    {"ESO", "COL", "es_CO"},	// Spanish (Colombia)
    {"ESC", "CRI", "es_CR"},	// Spanish (Costa Rica)
    {"ESD", "DOM", "es_DO"},	// Spanish (Dominican Republic)
    {"ESF", "ECU", "es_EC"},	// Spanish (Ecuador)
    {"ESE", "SLV", "es_SV"},	// Spanish (El Salvador)
    {"ESG", "GTM", "es_GT"},	// Spanish (Guatemala)
    {"ESH", "HND", "es_HN"},	// Spanish (Honduras)
    {"ESM", "MEX", "es_MX"},	// Spanish (Mexico)
    {"ESI", "NIC", "es_NI"},	// Spanish (Nicaragua)
    {"ESA", "PAN", "es_PA"},	// Spanish (Panama)
    {"ESZ", "PRY", "es_PY"},	// Spanish (Paraguay)
    {"ESR", "PER", "es_PE"},	// Spanish (Peru)
    {"ESU", "PRI", "es_PR"},	// Spanish (Puerto Rico)
    {"ESN", "ESP", "es_ES"},	// Spanish (Spain)
    {"EST", "USA", "es_US"},	// Spanish (United States)
    {"ESY", "URY", "es_UY"},	// Spanish (Uruguay)
    {"ESV", "VEN", "es_VE"},	// Spanish (Venezuela)
    {"SVF", "FIN", "sv_FI"},	// Swedish (Finland)
    {"SVE", "SWE", "sv_SE"},	// Swedish (Sweden)
    {"TAM", "IND", "ta_IN"},	// Tamil (India)
    {"TTT", "RUS", "tt_RU"},	// Tatar (Russia)
    {"TEL", "IND", "te_IN"},	// Telugu (India)
    {"THA", "THA", "th_TH"},	// Thai (Thailand)
    {"BOB", "CHN", "bo_CN"},	// Tibetan (PRC)
    {"TRK", "TUR", "tr_TR"},	// Turkish (Turkey)
    {"TUK", "TKM", "tk_TM"},	// Turkmen (Turkmenistan)
    {"UIG", "CHN", "ug_CN"},	// Uighur (PRC)
    {"UKR", "UKR", "uk_UA"},	// Ukrainian (Ukraine)
    {"URD", "PAK", "ur_PK"},	// Urdu (Islamic Republic of Pakistan)
    {"VIT", "VNM", "vi_VN"},	// Vietnamese (Vietnam)
    {"CYM", "GBR", "cy_GB"},	// Welsh (United Kingdom)
    {"WOL", "SEN", "wo_SN"},	// Wolof (Senegal)
    {"III", "CHN", "ii_CN"},	// Yi (PRC)
    {"YOR", "NGA", "yo_NG"},	// Yoruba (Nigeria)
    {NULL,NULL,NULL},		// Default - Can't find the language / Language not listed above
};

static void win_set_nls(void) {
    char country[32],lang[32];
    int i=0;

#ifdef HAVE_API_WIN32_CE
    wchar_t wcountry[32],wlang[32];
    GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME, wlang, sizeof(wlang));
    WideCharToMultiByte(CP_ACP,0,wlang,-1,lang,sizeof(lang),NULL,NULL);
    GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVCTRYNAME, wcountry, sizeof(wcountry));
    WideCharToMultiByte(CP_ACP,0,wcountry,-1,country,sizeof(country),NULL,NULL);
#else
    GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME, lang, sizeof(lang));
    GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVCTRYNAME, country, sizeof(country));
#endif
    while (nls_table[i][0]) {
        if (!strcmp(nls_table[i][0], lang) && !(strcmp(nls_table[i][1], country))) {
            dbg(lvl_info,"Setting LANG=%s for Lang %s Country %s",nls_table[i][2], lang, country);
            setenv("LANG",nls_table[i][2],0);
            return;
        }
        i++;
    }
    dbg(lvl_error,"Lang %s Country %s not found",lang,country);
}
#endif

void main_init(const char *program) {
    char *s;
#ifdef _UNICODE		/* currently for wince */
    wchar_t wfilename[MAX_PATH + 1];
#endif

    spawn_process_init();

    cbl=callback_list_new();
#ifdef HAVE_API_WIN32_BASE
    win_set_nls();
#endif
#ifndef HAVE_API_ANDROID
    setenv("LC_NUMERIC","C",1);
    setlocale(LC_ALL,"");
    setlocale(LC_NUMERIC,"C");
#endif
#if !defined _WIN32 && !defined _WIN32_WCE
    if (file_exists("navit.c") || file_exists("navit.o") || file_exists("navit.lo")
            || file_exists("THIS_IS_THE_NAVIT_WORKING_DIR")) {
        char buffer[PATH_MAX];
        printf("%s",_("Running from source directory\n"));
        if(getcwd(buffer, PATH_MAX)==NULL) { /*libc of navit returns "dummy" */
            printf("%s",_("Error getting current path. use ./ \n"));
            buffer[0]='.';
            buffer[1]='/';
            buffer[2]=0;
        }
        setenv("NAVIT_PREFIX", buffer, 0);
        main_setup_environment(0);
    } else {
        if (!getenv("NAVIT_PREFIX")) {
            int l;
            int progpath_len;
            char *progpath="/bin/navit";
            l=strlen(program);
            progpath_len=strlen(progpath);
            if (l > progpath_len && !strcmp(program+l-progpath_len,progpath)) {
                s=g_strdup(program);
                s[l-progpath_len]='\0';
                if (strcmp(s, PREFIX))
                    printf(_("setting '%s' to '%s'\n"), "NAVIT_PREFIX", s);
                setenv("NAVIT_PREFIX", s, 0);
                g_free(s);
            } else
                setenv("NAVIT_PREFIX", PREFIX, 0);
        }
# ifdef HAVE_API_ANDROID
        main_setup_environment(3);
# else
        main_setup_environment(1);
# endif
    }

#else		/* _WIN32 || _WIN32_WCE */
    if (!getenv("NAVIT_PREFIX")) {
        char  filename[MAX_PATH + 1],
              *end;
        int len;

        *filename = '\0';
# ifdef _UNICODE		/* currently for wince */
        if (GetModuleFileNameW(NULL, wfilename, MAX_PATH)) {
            wcstombs(filename, wfilename, MAX_PATH);
# else
        if (GetModuleFileName(NULL, filename, MAX_PATH)) {
# endif
            end = strrchr(filename, L'\\');	/* eliminate the file name which is on the right side */
            if(end)
                *end = '\0';
        }
        len=strlen(filename);
        if (len > 4 && !strcmp(filename+len-4,"\\bin")) {
            filename[len-4]='\0';
        }
        setenv("NAVIT_PREFIX", filename, 0);
    }
    if (!getenv("HOME"))
        setenv("HOME", getenv("NAVIT_PREFIX"), 0);
# if defined(HAVE_API_WIN32) && !defined(HAVE_API_WIN32_CE)
    main_setup_environment(4);
# else /* not (defined(HAVE_API_WIN32) && !defined(HAVE_API_WIN32_CE)) */
#  if defined(HAVE_API_WIN32_CE) && !defined(HAVE_API_WIN32)
    main_setup_environment(2);
#  else /* not (defined(HAVE_API_WIN32_CE) && !defined(HAVE_API_WIN32)) */
#   if defined(HAVE_API_WIN32_CE)
#    warning HAVE_API_WIN32_CE is defined
#   endif
#   if defined(HAVE_API_WIN32)
#    warning HAVE_API_WIN32 is defined
#   endif
#   error Exactly only one directive amongst HAVE_API_WIN32_CE or HAVE_API_WIN32 should be defined when preprocessor reach this section of code
#  endif
# endif
#endif	/* _WIN32 || _WIN32_WCE */

    s = getenv("NAVIT_WID");
    if (s) {
        setenv("SDL_WINDOWID", s, 0);
    }
}