diff options
author | martin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2010-05-20 07:56:49 +0000 |
---|---|---|
committer | martin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2010-05-20 07:56:49 +0000 |
commit | 77640ef02091eae6fe559a834e6dbac3c6958c7c (patch) | |
tree | 9cc5649185d757f7b7949fb0d83360657bdcdffa /navit/speech/espeak | |
parent | 6593466e3fe61264ebb41349d2582e3dd2d10419 (diff) | |
download | navit-svn-77640ef02091eae6fe559a834e6dbac3c6958c7c.tar.gz |
Fix:Build:Removed unneeded libraries for wince
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@3290 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/speech/espeak')
-rw-r--r-- | navit/speech/espeak/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/navit/speech/espeak/Makefile.am b/navit/speech/espeak/Makefile.am index b48150a5..ecdb5032 100644 --- a/navit/speech/espeak/Makefile.am +++ b/navit/speech/espeak/Makefile.am @@ -6,4 +6,8 @@ else noinst_LTLIBRARIES = libspeech_espeak.la endif libspeech_espeak_la_SOURCES = speak.c -libspeech_espeak_la_LDFLAGS = -module -avoid-version @NAVIT_MODULE_LDFLAGS@ -L$(top_builddir)/navit/support/espeak -lsupport_espeak -Wl,-lwinmm +libspeech_espeak_la_LDFLAGS = -module -avoid-version @NAVIT_MODULE_LDFLAGS@ -L$(top_builddir)/navit/support/espeak -lsupport_espeak +if !SUPPORT_WIN32CE +libspeech_espeak_la_LDFLAGS += -Wl,-lwinmm +endif + |