You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
(59) |
Sep
(43) |
Oct
(95) |
Nov
(135) |
Dec
(108) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(229) |
Feb
(141) |
Mar
(59) |
Apr
(70) |
May
(64) |
Jun
(87) |
Jul
(57) |
Aug
(108) |
Sep
(74) |
Oct
(203) |
Nov
(141) |
Dec
(108) |
2009 |
Jan
(114) |
Feb
(91) |
Mar
(101) |
Apr
(69) |
May
(54) |
Jun
(82) |
Jul
(49) |
Aug
(109) |
Sep
(81) |
Oct
(93) |
Nov
(100) |
Dec
(79) |
2010 |
Jan
(46) |
Feb
(36) |
Mar
(135) |
Apr
(103) |
May
(116) |
Jun
(130) |
Jul
(52) |
Aug
(31) |
Sep
(46) |
Oct
(48) |
Nov
(98) |
Dec
(110) |
2011 |
Jan
(234) |
Feb
(184) |
Mar
(150) |
Apr
(43) |
May
(53) |
Jun
(52) |
Jul
(112) |
Aug
(72) |
Sep
(79) |
Oct
(23) |
Nov
(6) |
Dec
(30) |
2012 |
Jan
(39) |
Feb
(37) |
Mar
(49) |
Apr
(60) |
May
(63) |
Jun
(38) |
Jul
(33) |
Aug
(24) |
Sep
(20) |
Oct
(14) |
Nov
(23) |
Dec
(50) |
2013 |
Jan
(30) |
Feb
(32) |
Mar
(27) |
Apr
(41) |
May
(59) |
Jun
(21) |
Jul
(10) |
Aug
(73) |
Sep
(23) |
Oct
(60) |
Nov
(14) |
Dec
(15) |
2014 |
Jan
(4) |
Feb
(8) |
Mar
(11) |
Apr
(6) |
May
(27) |
Jun
(4) |
Jul
(29) |
Aug
(62) |
Sep
(11) |
Oct
(17) |
Nov
(58) |
Dec
(9) |
2015 |
Jan
(23) |
Feb
(3) |
Mar
(26) |
Apr
(47) |
May
(8) |
Jun
(28) |
Jul
(10) |
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Michael F. <ho...@us...> - 2008-01-03 23:02:32
|
Update of /cvsroot/navit/navit/src In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29000 Modified Files: callback.h Log Message: Fix:Core:Add prototype for callback_list_call_attr Index: callback.h =================================================================== RCS file: /cvsroot/navit/navit/src/callback.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** callback.h 3 Dec 2007 13:17:19 -0000 1.10 --- callback.h 3 Jan 2008 23:02:35 -0000 1.11 *************** *** 16,19 **** --- 16,20 ---- void callback_list_remove_destroy(struct callback_list *l, struct callback *cb); void callback_call(struct callback *cb, int pcount, void **p); + void callback_list_call_attr(struct callback_list *l, enum attr_type type, int pcount, void **p); void callback_list_call(struct callback_list *l, int pcount, void **p); void callback_list_destroy(struct callback_list *l); |
From: Martin S. <mar...@us...> - 2008-01-03 22:55:49
|
Update of /cvsroot/navit/navit/src In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26100 Modified Files: coord.c navit.c osm2navit.c xmlconfig.c Log Message: Fix:Core:Replaced index with more standard strchr Index: coord.c =================================================================== RCS file: /cvsroot/navit/navit/src/coord.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** coord.c 25 Dec 2007 11:08:52 -0000 1.9 --- coord.c 3 Jan 2008 22:55:50 -0000 1.10 *************** *** 138,143 **** dbg(1,"enter('%s',%d,%p)\n", c_str, pro, c_ret); ! s=index(str,' '); ! co=index(str,':'); if (co && co < s) { proj=malloc(co-str+1); --- 138,143 ---- dbg(1,"enter('%s',%d,%p)\n", c_str, pro, c_ret); ! s=strchr(str,' '); ! co=strchr(str,':'); if (co && co < s) { proj=malloc(co-str+1); *************** *** 146,150 **** dbg(1,"projection=%s\n", proj); str=co+1; ! s=index(str,' '); if (!strcmp(proj, "mg")) str_pro = projection_mg; --- 146,150 ---- dbg(1,"projection=%s\n", proj); str=co+1; ! s=strchr(str,' '); if (!strcmp(proj, "mg")) str_pro = projection_mg; Index: osm2navit.c =================================================================== RCS file: /cvsroot/navit/navit/src/osm2navit.c,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** osm2navit.c 2 Jan 2008 13:47:33 -0000 1.22 --- osm2navit.c 3 Jan 2008 22:55:51 -0000 1.23 *************** *** 149,158 **** GHashTable *key_hash,*value_hash; t=line; ! p=index(t,'\t'); if (p) { while (*p == '\t') *p++='\0'; k=p; ! p=index(k,'\t'); } if (p) { --- 149,158 ---- GHashTable *key_hash,*value_hash; t=line; ! p=strchr(t,'\t'); if (p) { while (*p == '\t') *p++='\0'; k=p; ! p=strchr(k,'\t'); } if (p) { *************** *** 160,164 **** *p++='\0'; v=p; ! p=index(v,'\t'); } if (p) { --- 160,164 ---- *p++='\0'; v=p; ! p=strchr(v,'\t'); } if (p) { *************** *** 197,201 **** node_key_hash=g_hash_table_new(g_str_hash, g_str_equal); while (map) { ! p=index(map,'\n'); if (p) *p++='\0'; --- 197,201 ---- node_key_hash=g_hash_table_new(g_str_hash, g_str_equal); while (map) { ! p=strchr(map,'\n'); if (p) *p++='\0'; *************** *** 277,281 **** if (! s) return 0; ! i=index(pos, s); if (! i) return 0; --- 277,281 ---- if (! s) return 0; ! i=strchr(pos, s); if (! i) return 0; *************** *** 752,756 **** sig_alrm(0); while (fgets(buffer, size, in)) { ! p=index(buffer,'<'); if (! p) { fprintf(stderr,"WARNING: wrong line %s\n", buffer); --- 752,756 ---- sig_alrm(0); while (fgets(buffer, size, in)) { ! p=strchr(buffer,'<'); if (! p) { fprintf(stderr,"WARNING: wrong line %s\n", buffer); Index: navit.c =================================================================== RCS file: /cvsroot/navit/navit/src/navit.c,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** navit.c 3 Jan 2008 22:45:24 -0000 1.67 --- navit.c 3 Jan 2008 22:55:51 -0000 1.68 *************** *** 443,447 **** n=name; men=rmen; ! while (h && (i=index(n, '/'))) { strcpy(buffer2, name); buffer2[i-name]='\0'; --- 443,447 ---- n=name; men=rmen; ! while (h && (i=strchr(n, '/'))) { strcpy(buffer2, name); buffer2[i-name]='\0'; *************** *** 517,524 **** s=cp+pos+1; if (!strncmp(s,"type=", 5)) { ! i=index(s, '"'); if (i) { s=i+1; ! i=index(s, '"'); if (i) *i='\0'; --- 517,524 ---- s=cp+pos+1; if (!strncmp(s,"type=", 5)) { ! i=strchr(s, '"'); if (i) { s=i+1; ! i=strchr(s, '"'); if (i) *i='\0'; Index: xmlconfig.c =================================================================== RCS file: /cvsroot/navit/navit/src/xmlconfig.c,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** xmlconfig.c 1 Jan 2008 20:44:41 -0000 1.22 --- xmlconfig.c 3 Jan 2008 22:55:51 -0000 1.23 *************** *** 114,118 **** if (! value) return 0; ! pos=index(value, '-'); if (! pos) { ret=sscanf(value,"%d",min); --- 114,118 ---- if (! value) return 0; ! pos=strchr(value, '-'); if (! pos) { ret=sscanf(value,"%d",min); |
From: Michael F. <ho...@us...> - 2008-01-03 22:45:26
|
Update of /cvsroot/navit/navit/src In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21968 Modified Files: navit.c navit.h Log Message: Add:Core:Add callback hooks for toggle attributes Index: navit.h =================================================================== RCS file: /cvsroot/navit/navit/src/navit.h,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** navit.h 2 Jan 2008 20:44:50 -0000 1.26 --- navit.h 3 Jan 2008 22:45:25 -0000 1.27 *************** *** 64,67 **** --- 64,69 ---- int navit_set_attr(struct navit *this_, struct attr *attr); int navit_get_attr(struct navit *this_, enum attr_type type, struct attr *attr); + void navit_add_attr_cb(struct navit *this_, struct callback *cb); + void navit_remove_attr_cb(struct navit *this_, struct callback *cb); void navit_set_position(struct navit *this_, struct pcoord *c); struct navit_vehicle *navit_add_vehicle(struct navit *this_, struct vehicle *v, struct attr **attrs); Index: navit.c =================================================================== RCS file: /cvsroot/navit/navit/src/navit.c,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** navit.c 2 Jan 2008 20:44:50 -0000 1.66 --- navit.c 3 Jan 2008 22:45:24 -0000 1.67 *************** *** 86,89 **** --- 86,90 ---- struct callback_list *vehicle_cbl; struct callback_list *init_cbl; + struct callback_list *attr_cbl; int pid; struct callback *nav_speech_cb; *************** *** 327,330 **** --- 328,332 ---- this_->vehicle_cbl=callback_list_new(); this_->init_cbl=callback_list_new(); + this_->attr_cbl=callback_list_new(); f=popen("pidof /usr/bin/ipaq-sleep","r"); *************** *** 1148,1159 **** navit_set_attr(struct navit *this_, struct attr *attr) { ! int dir=0, orient_old=0; switch (attr->type) { case attr_cursor: ! this_->cursor_flag=!!attr->u.num; break; case attr_tracking: ! this_->tracking_flag=!!attr->u.num; break; case attr_orientation: --- 1150,1167 ---- navit_set_attr(struct navit *this_, struct attr *attr) { ! int dir=0, orient_old=0, attr_updated=0; switch (attr->type) { case attr_cursor: ! if (this_->cursor_flag != !!attr->u.num) { ! this_->cursor_flag=!!attr->u.num; ! attr_updated=1; ! } break; case attr_tracking: ! if (this_->tracking_flag != !!attr->u.num) { ! this_->tracking_flag=!!attr->u.num; ! attr_updated=1; ! } break; case attr_orientation: *************** *** 1170,1173 **** --- 1178,1182 ---- if (orient_old != this_->orient_north_flag) { navit_draw(this_); + attr_updated=1; } break; *************** *** 1175,1178 **** --- 1184,1190 ---- return 0; } + if (attr_updated) { + callback_list_call_attr(this_->attr_cbl, attr->type, 1, &attr); + } return 1; } *************** *** 1198,1201 **** --- 1210,1225 ---- } + void + navit_add_attr_cb(struct navit *this_, struct callback *cb) + { + callback_list_add(this_->attr_cbl, cb); + } + + void + navit_remove_attr_cb(struct navit *this_, struct callback *cb) + { + callback_list_remove(this_->attr_cbl, cb); + } + /** * Toggle the cursor update : refresh the map each time the cursor has moved (instead of only when it reaches a border) |
From: Martin S. <mar...@us...> - 2008-01-03 11:14:03
|
Update of /cvsroot/navit/navit/src In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src Modified Files: Makefile.am debug.h main.c plugin.c plugin.h profile.h Log Message: Add:Core:Added support for pluginless mode Index: debug.h =================================================================== RCS file: /cvsroot/navit/navit/src/debug.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** debug.h 9 Oct 2007 16:44:08 -0000 1.10 --- debug.h 3 Jan 2008 11:13:34 -0000 1.11 *************** *** 8,12 **** #include <stdarg.h> extern int debug_level; ! #define dbg(level,fmt...) ({ if (debug_level >= level) debug_printf(level,MODULE,__PRETTY_FUNCTION__,1,fmt); }) /* prototypes */ --- 8,15 ---- #include <stdarg.h> extern int debug_level; ! #define dbg_str2(x) #x ! #define dbg_str1(x) dbg_str2(x) ! #define dbg_module dbg_str1(MODULE) ! #define dbg(level,fmt...) ({ if (debug_level >= level) debug_printf(level,dbg_module,__PRETTY_FUNCTION__,1,fmt); }) /* prototypes */ Index: plugin.h =================================================================== RCS file: /cvsroot/navit/navit/src/plugin.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** plugin.h 9 Oct 2007 16:48:39 -0000 1.5 --- plugin.h 3 Jan 2008 11:13:34 -0000 1.6 *************** *** 105,109 **** --- 105,117 ---- #include "plugin_def.h" + #ifndef USE_PLUGINS + #define plugin_module_cat3(pre,mod,post) pre##mod##post + #define plugin_module_cat2(pre,mod,post) plugin_module_cat3(pre,mod,post) + #define plugin_module_cat(pre,post) plugin_module_cat2(pre,MODULE,post) + #define plugin_init plugin_module_cat(module_,_init) + #endif + void plugin_init(void); + /* prototypes */ struct plugin *plugin_new(char *plugin); Index: plugin.c =================================================================== RCS file: /cvsroot/navit/navit/src/plugin.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** plugin.c 16 Oct 2007 12:59:35 -0000 1.6 --- plugin.c 3 Jan 2008 11:13:34 -0000 1.7 *************** *** 1,4 **** --- 1,5 ---- #include <glib.h> #include <gmodule.h> + #include "config.h" #include "plugin.h" #include "file.h" *************** *** 145,148 **** --- 146,150 ---- plugins_init(struct plugins *pls) { + #ifdef USE_PLUGINS struct plugin *pl; GList *l; *************** *** 163,166 **** --- 165,169 ---- l=g_list_next(l); } + #endif } Index: profile.h =================================================================== RCS file: /cvsroot/navit/navit/src/profile.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** profile.h 9 Oct 2007 16:48:40 -0000 1.3 --- profile.h 3 Jan 2008 11:13:34 -0000 1.4 *************** *** 5,9 **** extern "C" { #endif ! #define profile(level,fmt...) profile_timer(level,MODULE,__PRETTY_FUNCTION__,fmt) void profile_timer(int level, const char *module, const char *function, const char *fmt, ...); #ifdef __cplusplus --- 5,12 ---- extern "C" { #endif ! #define profile_str2(x) #x ! #define profile_str1(x) profile_str2(x) ! #define profile_module profile_str1(MODULE) ! #define profile(level,fmt...) profile_timer(level,profile_module,__PRETTY_FUNCTION__,fmt) void profile_timer(int level, const char *module, const char *function, const char *fmt, ...); #ifdef __cplusplus Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/Makefile.am,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** Makefile.am 18 Dec 2007 19:36:56 -0000 1.29 --- Makefile.am 3 Jan 2008 11:13:34 -0000 1.30 *************** *** 6,10 **** endif ! AM_CPPFLAGS = -I$(top_srcdir)/src/fib-1.1 @NAVIT_CFLAGS@ -DPREFIX=\"@prefix@\" -DMODULE=\"navit\" BUILT_SOURCES=osm2navit bin_PROGRAMS = navit osm2navit --- 6,10 ---- endif ! AM_CPPFLAGS = -I$(top_srcdir)/src/fib-1.1 @NAVIT_CFLAGS@ -DPREFIX=\"@prefix@\" -DMODULE=navit BUILT_SOURCES=osm2navit bin_PROGRAMS = navit osm2navit *************** *** 29,31 **** --- 29,43 ---- navit_LDADD = @NAVIT_LIBS@ @ZLIB_LIBS@ -Lfib-1.1 -lfib + if !PLUGINS + navit_SOURCES += builtin.c + navit_LDADD += $(wildcard $(top_builddir)/src/*/*/*.la) + endif + + builtin.c: + ls $(top_builddir)/src/*/*/*.la | sed -e "s/.la/_init(void);/" -e "s/.*lib/extern void /" >builtin.c + echo "extern void builtin_init(void);" >>builtin.c + echo "void builtin_init(void) {" >>builtin.c + ls $(top_builddir)/src/*/*/*.la | sed -e "s/.la/_init();/" -e "s/.*lib/ module_/" >>builtin.c + echo "}" >>builtin.c + osm2navit_LDADD = @NAVIT_LIBS@ @ZLIB_LIBS@ Index: main.c =================================================================== RCS file: /cvsroot/navit/navit/src/main.c,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** main.c 1 Jan 2008 22:13:02 -0000 1.21 --- main.c 3 Jan 2008 11:13:34 -0000 1.22 *************** *** 12,15 **** --- 12,16 ---- #include <gtk/gtk.h> #endif + #include "config.h" #include "file.h" #include "debug.h" *************** *** 17,21 **** #include "navit.h" #include "gui.h" - #include "plugin.h" #include "xmlconfig.h" --- 18,21 ---- *************** *** 129,132 **** --- 129,136 ---- debug_init(); + #ifndef USE_PLUGINS + extern void builtin_init(void); + builtin_init(); + #endif #if 0 /* handled in gui/gtk */ |
From: Martin S. <mar...@us...> - 2008-01-03 11:14:03
|
Update of /cvsroot/navit/navit/src/data/poi_geodownload In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/data/poi_geodownload Modified Files: Makefile.am poi_geodownload.c Log Message: Add:Core:Added support for pluginless mode Index: poi_geodownload.c =================================================================== RCS file: /cvsroot/navit/navit/src/data/poi_geodownload/poi_geodownload.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** poi_geodownload.c 28 Aug 2007 17:38:09 -0000 1.3 --- poi_geodownload.c 3 Jan 2008 11:13:34 -0000 1.4 *************** *** 1,3 **** --- 1,4 ---- #include <mdbtools.h> + #include "config.h" #include "debug.h" #include "coord.h" Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/data/poi_geodownload/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 23 Aug 2007 19:29:50 -0000 1.2 --- Makefile.am 3 Jan 2008 11:13:34 -0000 1.3 *************** *** 1,5 **** SUBDIRS=libmdb include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -I$(srcdir)/libmdb/include -DMODULE=\"data_poi_geodownload\" moduledata_LTLIBRARIES = libdata_poi_geodownload.la libdata_poi_geodownload_la_SOURCES = poi_geodownload.c --- 1,5 ---- SUBDIRS=libmdb include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -I$(srcdir)/libmdb/include -DMODULE=data_poi_geodownload moduledata_LTLIBRARIES = libdata_poi_geodownload.la libdata_poi_geodownload_la_SOURCES = poi_geodownload.c |
From: Martin S. <mar...@us...> - 2008-01-03 11:14:03
|
Update of /cvsroot/navit/navit/src/data/garmin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/data/garmin Modified Files: Makefile.am garmin.c Log Message: Add:Core:Added support for pluginless mode Index: garmin.c =================================================================== RCS file: /cvsroot/navit/navit/src/data/garmin/garmin.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** garmin.c 6 Dec 2007 21:41:22 -0000 1.12 --- garmin.c 3 Jan 2008 11:13:34 -0000 1.13 *************** *** 29,32 **** --- 29,33 ---- #include <sys/stat.h> #include <unistd.h> + #include "config.h" #include "plugin.h" #include "data.h" Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/data/garmin/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.am 5 Nov 2007 14:40:31 -0000 1.3 --- Makefile.am 3 Jan 2008 11:13:34 -0000 1.4 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"data_garmin\" AM_CPPFLAGS+= @LIBGARMIN_CFLAGS@ INCLUDES=-I$(top_srcdir)/src/data/garmin/libgarmin --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=data_garmin AM_CPPFLAGS+= @LIBGARMIN_CFLAGS@ INCLUDES=-I$(top_srcdir)/src/data/garmin/libgarmin |
From: Martin S. <mar...@us...> - 2008-01-03 11:14:03
|
Update of /cvsroot/navit/navit/src/data/mg In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/data/mg Modified Files: Makefile.am map.c Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/data/mg/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile.am 5 Jul 2007 16:50:30 -0000 1.4 --- Makefile.am 3 Jan 2008 11:13:34 -0000 1.5 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"data_mg\" moduledata_LTLIBRARIES = libdata_mg.la libdata_mg_la_SOURCES = map.c block.c town.c tree.c poly.c street.c mg.h --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=data_mg moduledata_LTLIBRARIES = libdata_mg.la libdata_mg_la_SOURCES = map.c block.c town.c tree.c poly.c street.c mg.h Index: map.c =================================================================== RCS file: /cvsroot/navit/navit/src/data/mg/map.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** map.c 25 Dec 2007 14:11:30 -0000 1.8 --- map.c 3 Jan 2008 11:13:34 -0000 1.9 *************** *** 1,4 **** --- 1,5 ---- #include <stdio.h> #include <string.h> + #include "config.h" #include "debug.h" #include "plugin.h" |
From: Martin S. <mar...@us...> - 2008-01-03 11:14:02
|
Update of /cvsroot/navit/navit/src/data/binfile In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/data/binfile Modified Files: Makefile.am binfile.c Log Message: Add:Core:Added support for pluginless mode Index: binfile.c =================================================================== RCS file: /cvsroot/navit/navit/src/data/binfile/binfile.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** binfile.c 29 Dec 2007 15:25:52 -0000 1.12 --- binfile.c 3 Jan 2008 11:13:34 -0000 1.13 *************** *** 4,7 **** --- 4,8 ---- #include <string.h> #include <math.h> + #include "config.h" #include "debug.h" #include "plugin.h" Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/data/binfile/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 3 Oct 2007 20:24:40 -0000 1.2 --- Makefile.am 3 Jan 2008 11:13:34 -0000 1.3 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"data_binfile\" moduledata_LTLIBRARIES = libdata_binfile.la libdata_binfile_la_SOURCES = binfile.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=data_binfile moduledata_LTLIBRARIES = libdata_binfile.la libdata_binfile_la_SOURCES = binfile.c |
From: Martin S. <mar...@us...> - 2008-01-03 11:14:02
|
Update of /cvsroot/navit/navit/src/data/garmin_img In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/data/garmin_img Modified Files: Makefile.am garmin_img.c Log Message: Add:Core:Added support for pluginless mode Index: garmin_img.c =================================================================== RCS file: /cvsroot/navit/navit/src/data/garmin_img/garmin_img.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** garmin_img.c 28 Aug 2007 17:31:16 -0000 1.5 --- garmin_img.c 3 Jan 2008 11:13:34 -0000 1.6 *************** *** 4,7 **** --- 4,8 ---- #include <string.h> #include <math.h> + #include "config.h" #include "plugin.h" #include "data.h" Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/data/garmin_img/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 6 Jul 2007 13:33:44 -0000 1.5 --- Makefile.am 3 Jan 2008 11:13:34 -0000 1.6 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"data_garmin_img\" moduledata_LTLIBRARIES = libdata_garmin_img.la libdata_garmin_img_la_SOURCES = garmin_img.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=data_garmin_img moduledata_LTLIBRARIES = libdata_garmin_img.la libdata_garmin_img_la_SOURCES = garmin_img.c |
From: Martin S. <mar...@us...> - 2008-01-03 11:14:01
|
Update of /cvsroot/navit/navit/src/binding/python In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/binding/python Modified Files: Makefile.am Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/binding/python/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 8 Jul 2007 17:46:27 -0000 1.2 --- Makefile.am 3 Jan 2008 11:13:34 -0000 1.3 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ @PYTHON_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"binding_python\" modulebinding_LTLIBRARIES = libbinding_python.la libbinding_python_la_SOURCES = binding_python.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ @PYTHON_CFLAGS@ -I$(top_srcdir)/src -DMODULE=binding_python modulebinding_LTLIBRARIES = libbinding_python.la libbinding_python_la_SOURCES = binding_python.c |
From: Martin S. <mar...@us...> - 2008-01-03 11:14:00
|
Update of /cvsroot/navit/navit In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639 Modified Files: configure.in Log Message: Add:Core:Added support for pluginless mode Index: configure.in =================================================================== RCS file: /cvsroot/navit/navit/configure.in,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** configure.in 1 Jan 2008 23:23:37 -0000 1.65 --- configure.in 3 Jan 2008 11:13:34 -0000 1.66 *************** *** 25,28 **** --- 25,29 ---- AC_DISABLE_SHARED AC_ENABLE_STATIC + plugins=$enableval ], [ *************** *** 30,37 **** AC_DISABLE_STATIC AC_DEFINE( ! [HAVE_PLUGIN], [], Define to 1 if you have plugins. ) ] ) --- 31,39 ---- AC_DISABLE_STATIC AC_DEFINE( ! [USE_PLUGINS], [], Define to 1 if you have plugins. ) + plugins=yes ] ) *************** *** 91,94 **** --- 93,97 ---- AM_CONDITIONAL(GUI_GTK, [test "x$gtk2_pkgconfig" = "xyes"]) AM_CONDITIONAL(GRAPHICS_GTK_DRAWING_AREA, [test "x$gtk2_pkgconfig" = "xyes"]) + AM_CONDITIONAL(PLUGINS, [test "x$plugins" = "xyes"]) PKG_CHECK_MODULES(FREETYPE2, [freetype2], [freetype2_pkgconfig=yes], [freetype2_pkgconfig=no]) |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/gui/gtk In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/gui/gtk Modified Files: Makefile.am gui_gtk_window.c Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/gui/gtk/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile.am 18 Sep 2007 14:48:12 -0000 1.8 --- Makefile.am 3 Jan 2008 11:13:37 -0000 1.9 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = -I$(top_srcdir)/src @NAVIT_CFLAGS@ @GTK2_CFLAGS@ -DMODULE=\"gui_gtk\" modulegui_LTLIBRARIES = libgui_gtk.la libgui_gtk_la_SOURCES = datawindow.c destination.c gui_gtk_statusbar.c gui_gtk_action.c gui_gtk_window.c gui_gtk.h --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = -I$(top_srcdir)/src @NAVIT_CFLAGS@ @GTK2_CFLAGS@ -DMODULE=gui_gtk modulegui_LTLIBRARIES = libgui_gtk.la libgui_gtk_la_SOURCES = datawindow.c destination.c gui_gtk_statusbar.c gui_gtk_action.c gui_gtk_window.c gui_gtk.h Index: gui_gtk_window.c =================================================================== RCS file: /cvsroot/navit/navit/src/gui/gtk/gui_gtk_window.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** gui_gtk_window.c 11 Dec 2007 18:12:57 -0000 1.15 --- gui_gtk_window.c 3 Jan 2008 11:13:37 -0000 1.16 *************** *** 7,10 **** --- 7,11 ---- #include <libintl.h> #include <gtk/gtk.h> + #include "config.h" #include "navit.h" #include "debug.h" |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/osd/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/osd/core Modified Files: Makefile.am osd_core.c Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/osd/core/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 29 Aug 2007 18:32:15 -0000 1.1 --- Makefile.am 3 Jan 2008 11:13:37 -0000 1.2 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"osd_core\" moduleosd_LTLIBRARIES = libosd_core.la libosd_core_la_SOURCES = osd_core.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=osd_core moduleosd_LTLIBRARIES = libosd_core.la libosd_core_la_SOURCES = osd_core.c Index: osd_core.c =================================================================== RCS file: /cvsroot/navit/navit/src/osd/core/osd_core.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** osd_core.c 3 Sep 2007 07:43:16 -0000 1.2 --- osd_core.c 3 Jan 2008 11:13:37 -0000 1.3 *************** *** 2,5 **** --- 2,6 ---- #include <stdio.h> #include <glib.h> + #include "config.h" #include "item.h" #include "point.h" |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/vehicle/gpsd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/vehicle/gpsd Modified Files: Makefile.am Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/vehicle/gpsd/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 18 Dec 2007 19:36:58 -0000 1.2 --- Makefile.am 3 Jan 2008 11:13:38 -0000 1.3 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"vehicle_gpsd\" modulevehicle_LTLIBRARIES = libvehicle_gpsd.la libvehicle_gpsd_la_SOURCES = vehicle_gpsd.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=vehicle_gpsd modulevehicle_LTLIBRARIES = libvehicle_gpsd.la libvehicle_gpsd_la_SOURCES = vehicle_gpsd.c |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/plugins/poi_geodownload In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/plugins/poi_geodownload Modified Files: poi.c Log Message: Add:Core:Added support for pluginless mode Index: poi.c =================================================================== RCS file: /cvsroot/navit/navit/src/plugins/poi_geodownload/poi.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** poi.c 25 Oct 2007 14:49:17 -0000 1.5 --- poi.c 3 Jan 2008 11:13:38 -0000 1.6 *************** *** 1,3 **** --- 1,4 ---- #include <mdbtools.h> + #include "config.h" #include "display.h" #include "container.h" |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/speech/speech_dispatcher In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/speech/speech_dispatcher Modified Files: Makefile.am Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/speech/speech_dispatcher/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 5 Jul 2007 21:16:30 -0000 1.1 --- Makefile.am 3 Jan 2008 11:13:38 -0000 1.2 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"speech_speech_dispatcher\" modulespeech_LTLIBRARIES = libspeech_speech_dispatcher.la libspeech_speech_dispatcher_la_SOURCES = speech_speech_dispatcher.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=speech_speech_dispatcher modulespeech_LTLIBRARIES = libspeech_speech_dispatcher.la libspeech_speech_dispatcher_la_SOURCES = speech_speech_dispatcher.c |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/graphics/null In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/graphics/null Modified Files: Makefile.am graphics_null.c Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/graphics/null/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 6 Jul 2007 13:33:45 -0000 1.5 --- Makefile.am 3 Jan 2008 11:13:37 -0000 1.6 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"graphics_null\" modulegraphics_LTLIBRARIES = libgraphics_null.la libgraphics_null_la_SOURCES = graphics_null.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=graphics_null modulegraphics_LTLIBRARIES = libgraphics_null.la libgraphics_null_la_SOURCES = graphics_null.c Index: graphics_null.c =================================================================== RCS file: /cvsroot/navit/navit/src/graphics/null/graphics_null.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** graphics_null.c 28 Aug 2007 17:31:18 -0000 1.4 --- graphics_null.c 3 Jan 2008 11:13:37 -0000 1.5 *************** *** 1,3 **** --- 1,4 ---- #include <glib.h> + #include "config.h" #include "point.h" #include "graphics.h" |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/vehicle/demo In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/vehicle/demo Modified Files: Makefile.am vehicle_demo.c Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/vehicle/demo/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 18 Dec 2007 19:40:39 -0000 1.1 --- Makefile.am 3 Jan 2008 11:13:38 -0000 1.2 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"vehicle_demo\" modulevehicle_LTLIBRARIES = libvehicle_demo.la libvehicle_demo_la_SOURCES = vehicle_demo.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=vehicle_demo modulevehicle_LTLIBRARIES = libvehicle_demo.la libvehicle_demo_la_SOURCES = vehicle_demo.c Index: vehicle_demo.c =================================================================== RCS file: /cvsroot/navit/navit/src/vehicle/demo/vehicle_demo.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** vehicle_demo.c 1 Jan 2008 22:13:02 -0000 1.8 --- vehicle_demo.c 3 Jan 2008 11:13:38 -0000 1.9 *************** *** 1,3 **** --- 1,4 ---- #include <glib.h> + #include "config.h" #include "debug.h" #include "coord.h" |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/data/textfile In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/data/textfile Modified Files: Makefile.am textfile.c Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/data/textfile/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 6 Jul 2007 13:33:44 -0000 1.5 --- Makefile.am 3 Jan 2008 11:13:35 -0000 1.6 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"data_textfile\" moduledata_LTLIBRARIES = libdata_textfile.la libdata_textfile_la_SOURCES = textfile.c textfile.h --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=data_textfile moduledata_LTLIBRARIES = libdata_textfile.la libdata_textfile_la_SOURCES = textfile.c textfile.h Index: textfile.c =================================================================== RCS file: /cvsroot/navit/navit/src/data/textfile/textfile.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** textfile.c 6 Dec 2007 21:41:22 -0000 1.9 --- textfile.c 3 Jan 2008 11:13:37 -0000 1.10 *************** *** 4,7 **** --- 4,8 ---- #include <string.h> #include <math.h> + #include "config.h" #include "debug.h" #include "plugin.h" |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/speech/cmdline In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/speech/cmdline Modified Files: Makefile.am speech_cmdline.c Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/speech/cmdline/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 5 Jul 2007 21:11:11 -0000 1.1 --- Makefile.am 3 Jan 2008 11:13:38 -0000 1.2 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"speech_cmdline\" modulespeech_LTLIBRARIES = libspeech_cmdline.la libspeech_cmdline_la_SOURCES = speech_cmdline.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=speech_cmdline modulespeech_LTLIBRARIES = libspeech_cmdline.la libspeech_cmdline_la_SOURCES = speech_cmdline.c Index: speech_cmdline.c =================================================================== RCS file: /cvsroot/navit/navit/src/speech/cmdline/speech_cmdline.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** speech_cmdline.c 9 Jul 2007 22:18:31 -0000 1.3 --- speech_cmdline.c 3 Jan 2008 11:13:38 -0000 1.4 *************** *** 1,4 **** --- 1,5 ---- #include <stdlib.h> #include <glib.h> + #include "config.h" #include "plugin.h" #include "speech.h" |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/vehicle/file In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/vehicle/file Modified Files: Makefile.am vehicle_file.c Log Message: Add:Core:Added support for pluginless mode Index: vehicle_file.c =================================================================== RCS file: /cvsroot/navit/navit/src/vehicle/file/vehicle_file.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** vehicle_file.c 18 Dec 2007 19:36:57 -0000 1.2 --- vehicle_file.c 3 Jan 2008 11:13:38 -0000 1.3 *************** *** 7,10 **** --- 7,11 ---- #include <termios.h> #include <math.h> + #include "config.h" #include "debug.h" #include "callback.h" Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/vehicle/file/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 5 Jul 2007 21:11:12 -0000 1.1 --- Makefile.am 3 Jan 2008 11:13:38 -0000 1.2 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"vehicle_file\" modulevehicle_LTLIBRARIES = libvehicle_file.la libvehicle_file_la_SOURCES = vehicle_file.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ -I$(top_srcdir)/src -DMODULE=vehicle_file modulevehicle_LTLIBRARIES = libvehicle_file.la libvehicle_file_la_SOURCES = vehicle_file.c |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:36
|
Update of /cvsroot/navit/navit/src/gui/sdl In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/gui/sdl Modified Files: Makefile.am Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/gui/sdl/Makefile.am,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile.am 23 Nov 2007 17:34:57 -0000 1.9 --- Makefile.am 3 Jan 2008 11:13:37 -0000 1.10 *************** *** 1,5 **** include $(top_srcdir)/Makefile.inc SUBDIRS=datafiles ! AM_CPPFLAGS = @NAVIT_CFLAGS@ @CEGUI_CFLAGS@ @GLC_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"gui_sdl\" modulegui_LTLIBRARIES = libgui_sdl.la libgui_sdl_la_SOURCES = gui_sdl_window.cpp sdl_events.cpp gui_sdl.h sdl_events.h wmcontrol.c wmcontrol.h cegui_keyboard.cpp cegui_keyboard.h --- 1,5 ---- include $(top_srcdir)/Makefile.inc SUBDIRS=datafiles ! AM_CPPFLAGS = @NAVIT_CFLAGS@ @CEGUI_CFLAGS@ @GLC_CFLAGS@ -I$(top_srcdir)/src -DMODULE=gui_sdl modulegui_LTLIBRARIES = libgui_sdl.la libgui_sdl_la_SOURCES = gui_sdl_window.cpp sdl_events.cpp gui_sdl.h sdl_events.h wmcontrol.c wmcontrol.h cegui_keyboard.cpp cegui_keyboard.h |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:35
|
Update of /cvsroot/navit/navit/src/graphics/gtk_drawing_area In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/graphics/gtk_drawing_area Modified Files: Makefile.am Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/graphics/gtk_drawing_area/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile.am 17 Oct 2007 13:28:44 -0000 1.8 --- Makefile.am 3 Jan 2008 11:13:37 -0000 1.9 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @GTK2_CFLAGS@ @FREETYPE2_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"graphics_gtk_drawing_area\" modulegraphics_LTLIBRARIES = libgraphics_gtk_drawing_area.la libgraphics_gtk_drawing_area_la_SOURCES = graphics_gtk_drawing_area.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @GTK2_CFLAGS@ @FREETYPE2_CFLAGS@ -I$(top_srcdir)/src -DMODULE=graphics_gtk_drawing_area modulegraphics_LTLIBRARIES = libgraphics_gtk_drawing_area.la libgraphics_gtk_drawing_area_la_SOURCES = graphics_gtk_drawing_area.c |
From: Martin S. <mar...@us...> - 2008-01-03 11:13:35
|
Update of /cvsroot/navit/navit/src/graphics/opengl In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27639/src/graphics/opengl Modified Files: Makefile.am Log Message: Add:Core:Added support for pluginless mode Index: Makefile.am =================================================================== RCS file: /cvsroot/navit/navit/src/graphics/opengl/Makefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile.am 8 Jul 2007 18:07:14 -0000 1.6 --- Makefile.am 3 Jan 2008 11:13:37 -0000 1.7 *************** *** 1,4 **** include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ @OPENGL_CFLAGS@ @GLC_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"graphics_opengl\" modulegraphics_LTLIBRARIES = libgraphics_opengl.la libgraphics_opengl_la_SOURCES = graphics_opengl.c --- 1,4 ---- include $(top_srcdir)/Makefile.inc ! AM_CPPFLAGS = @NAVIT_CFLAGS@ @OPENGL_CFLAGS@ @GLC_CFLAGS@ -I$(top_srcdir)/src -DMODULE=graphics_opengl modulegraphics_LTLIBRARIES = libgraphics_opengl.la libgraphics_opengl_la_SOURCES = graphics_opengl.c |
From: Michael F. <ho...@us...> - 2008-01-02 20:44:46
|
Update of /cvsroot/navit/navit/src In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21462 Modified Files: navit.c navit.h Log Message: Fix:Core:Remove obsolete navit_toggle_* functions Index: navit.h =================================================================== RCS file: /cvsroot/navit/navit/src/navit.h,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** navit.h 2 Jan 2008 00:16:25 -0000 1.25 --- navit.h 2 Jan 2008 20:44:50 -0000 1.26 *************** *** 62,68 **** void navit_set_center(struct navit *this_, struct coord *center); void navit_set_center_screen(struct navit *this_, struct point *p); - void navit_toggle_cursor(struct navit *this_); - void navit_toggle_tracking(struct navit *this_); - void navit_toggle_orient_north(struct navit *this_); int navit_set_attr(struct navit *this_, struct attr *attr); int navit_get_attr(struct navit *this_, enum attr_type type, struct attr *attr); --- 62,65 ---- Index: navit.c =================================================================== RCS file: /cvsroot/navit/navit/src/navit.c,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** navit.c 2 Jan 2008 19:31:17 -0000 1.65 --- navit.c 2 Jan 2008 20:44:50 -0000 1.66 *************** *** 1145,1192 **** } - void - navit_toggle_cursor(struct navit *this_) - { - this_->cursor_flag=1-this_->cursor_flag; - } - - /** - * Toggle the tracking : automatic centering of the map on the main vehicle - * - * @param navit The navit instance - * @returns nothing - */ - void - navit_toggle_tracking(struct navit *this_) - { - this_->tracking_flag=1-this_->tracking_flag; - } - - /** - * Toggle the north orientation : forces the map to be aimed at north - * - * @param navit The navit instance - * @returns nothing - */ - void - navit_toggle_orient_north(struct navit *this_) - { - int dir = 0; - - this_->orient_north_flag=1-this_->orient_north_flag; - if (this_->orient_north_flag) { - dir = 0; - } else { - if (this_->vehicle) { - dir = this_->vehicle->dir; - } - } - transform_set_angle(this_->trans, dir); - #if 0 - /* FIXME check if we are ready for this. */ - navit_draw(this_); - #endif - } - int navit_set_attr(struct navit *this_, struct attr *attr) --- 1145,1148 ---- |