View Single Post
Old 09-19-2013, 08:18 AM   #14
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Týr
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
http://sourceforge.net/p/navit/code/.../navit/navit.c

Code:
navit_get_user_data_directory(int create) {
	char *dir;
	dir = getenv("NAVIT_USER_DATADIR");
	if (create && !file_exists(dir)) {
		dbg(0,"creating dir %s\n", dir);
		if (file_mkdir(dir,0)) {
			dbg(0,"failed creating dir %s\n", dir);
			return NULL;
		}
	}
	return dir;
} /* end: navit_get_user_data_directory(gboolean create) */
so you shouldnt need to make the dir AFAIK.

perhaps nose around in there a bit more and see if that (baf) error traces back to something obvious. does the file exist?

http://wiki.navit-project.org/index....pment#Building
for latestish building notes


There are some successful build logs for various versions that might be worth a once over here: http://download.navit-project.org/logs/navit/
meh not so interesting

Honestly though? I am just not sure.

Last edited by twobob; 09-19-2013 at 08:51 AM.
twobob is offline   Reply With Quote