summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2005-12-02 23:11:24 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2005-12-02 23:11:24 +0000
commit132a38489d5ea15f19bfa00190d16118b32ed4f3 (patch)
tree1a86cb2ee042f55ee4ddb8581f7e2a994ee2acb7
parent932d0bb02249a7a6ebe8bde4fda6a4126ead7c69 (diff)
downloadnavit-svn-132a38489d5ea15f19bfa00190d16118b32ed4f3.tar.gz
Fixed missing -lspeech in linking
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@13 ffa7fe5e-494d-0410-b361-a75ebd5db220
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 6171f49d..1b2b6bd3 100644
--- a/configure.in
+++ b/configure.in
@@ -9,7 +9,7 @@ pkg_modules="glib-2.0 gtk+-2.0 ORBit-2.0 freetype2"
PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
AC_SUBST(PACKAGE_CFLAGS)
AC_SUBST(PACKAGE_LIBS)
-AC_CHECK_HEADER(libspeechd.h, AC_DEFINE([HAVE_LIBSPEECHD],[],Define to 1 if you have the <libspeechd.h> header file.), AC_MSG_WARN([*** no libspeechd.h -- Speech output disabled]))
+AC_CHECK_HEADER(libspeechd.h, AC_DEFINE([HAVE_LIBSPEECHD],[],Define to 1 if you have the <libspeechd.h> header file.) LIBS="$LIBS -lspeechd", AC_MSG_WARN([*** no libspeechd.h -- Speech output disabled]))
AC_CONFIG_SUBDIRS(src/fib-1.0)