diff options
author | martin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2010-08-09 13:50:55 +0000 |
---|---|---|
committer | martin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2010-08-09 13:50:55 +0000 |
commit | b65896ebee0dc25bca3e4b171b3330eaf6744a00 (patch) | |
tree | 50540bb0c4f6c235ef5f8de2e4a627f7b48d2002 /configure.in | |
parent | a6664591f654a44f9c3c107ef4c864648faf5e02 (diff) | |
download | navit-b65896ebee0dc25bca3e4b171b3330eaf6744a00.tar.gz |
Fix:Build:No pthread on android
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@3521 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 754577c82..41338f3fb 100644 --- a/configure.in +++ b/configure.in @@ -284,7 +284,7 @@ if test "x${glib}" = "xyes"; then else GLIB_CFLAGS="-I\$(top_srcdir)/navit/support -I\$(top_srcdir)/navit/support/glib -I\$(top_srcdir)/navit/support/ezxml" GLIB_LIBS="-L\$(top_builddir)/navit/support/glib -lsupport_glib -L\$(top_builddir)/navit/support/ezxml -lsupport_ezxml" - if test "x${win32}" != "xyes"; then + if test "x${win32}" != "xyes" -a "x${android}" != "xyes"; then GLIB_LIBS="$GLIB_LIBS -lpthread" fi fi |