summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2007-09-18 14:48:12 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2007-09-18 14:48:12 +0000
commitf20a03053a904e8ca3a3297184a045f93b607510 (patch)
treee454fb9f641f93d97316719ee3910efae4a548c1
parent72b34be7da3bde666831739a791733bcf16e1a2f (diff)
downloadnavit-svn-f20a03053a904e8ca3a3297184a045f93b607510.tar.gz
Some minor fixes
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@425 ffa7fe5e-494d-0410-b361-a75ebd5db220
-rwxr-xr-xautogen.sh2
-rw-r--r--src/data/mg/town.c2
-rw-r--r--src/gui/gtk/Makefile.am2
3 files changed, 3 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index fd0be89c..b483139f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,2 +1,2 @@
#!/bin/sh
-autoreconf --force --install -I config -I m4
+autoreconf --force --install -I m4
diff --git a/src/data/mg/town.c b/src/data/mg/town.c
index df880b7a..fbcfcffe 100644
--- a/src/data/mg/town.c
+++ b/src/data/mg/town.c
@@ -102,7 +102,7 @@ town_get_data(struct town_priv *twn, unsigned char **p)
twn->district=get_string(p);
twn->postal_code1=get_string(p);
twn->order=get_u8(p); /* 1-15 (19) */
- twn->country=get_u16(p);
+ twn->country=get_u16_unal(p);
twn->type=get_u8(p);
twn->unknown2=get_u32_unal(p);
twn->size=get_u8(p);
diff --git a/src/gui/gtk/Makefile.am b/src/gui/gtk/Makefile.am
index 2aa3d880..84a39c40 100644
--- a/src/gui/gtk/Makefile.am
+++ b/src/gui/gtk/Makefile.am
@@ -1,5 +1,5 @@
include $(top_srcdir)/Makefile.inc
-AM_CPPFLAGS = @NAVIT_CFLAGS@ @GTK2_CFLAGS@ -I$(top_srcdir)/src -DMODULE=\"gui_gtk\"
+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
libgui_gtk_la_LIBADD = @GTK2_LIBS@