diff options
author | Keith Packard <keithp@keithp.com> | 2010-04-08 22:45:04 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-04-08 22:46:00 -0700 |
commit | ea5d4f01d18d93d032f05933041b7b6881289780 (patch) | |
tree | 126dbba88530b3aeea9e89b6f8aa38c9666d24fb | |
parent | 4b02f293e9c32a568fad89558274f21157e7d473 (diff) |
libflite may forget to reference libasound
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 77699fba..d4ddda18 100644 --- a/configure.ac +++ b/configure.ac @@ -44,11 +44,11 @@ fi AC_SUBST(WARN_CFLAGS) AC_CHECK_HEADERS(flite/flite.h,HAVE_FLITE_H=yes,HAVE_FLITE_H=no) -AC_CHECK_LIB(flite, flite_init,HAVE_LIBFLITE=yes,HAVE_LIBFLITE=no,-lm) +AC_CHECK_LIB(flite, flite_init,HAVE_LIBFLITE=yes,HAVE_LIBFLITE=no,-lasound -lm) if test "x$HAVE_FLITE_H" = "xyes" -a "x$HAVE_LIBFLITE" = "xyes"; then AC_DEFINE(HAVE_FLITE,1,[Define if the flite library is usable]) - AC_SUBST(FLITE_LIBS,"-lflite_cmu_us_kal16 -lflite_usenglish -lflite_cmulex -lflite -lm") + AC_SUBST(FLITE_LIBS,"-lflite_cmu_us_kal16 -lflite_usenglish -lflite_cmulex -lflite -lasound -lm") AC_SUBST(FLITE_INCS,-Iflite) fi AM_CONDITIONAL(USE_FLITE,test "x$HAVE_FLITE_H" = "xyes" -a "x$HAVE_LIBFLITE" = "xyes") |