new version

This commit is contained in:
Volker Fischer 2009-03-29 16:50:29 +00:00
parent ffe0869129
commit 7f9de079b0
3 changed files with 14 additions and 9 deletions

View file

@ -1,3 +1,8 @@
2.2.1
- bug fix and improvements for automatic jitter buffer size setting
2.2.0 2.2.0
- added Jack audio interface (Linux) - added Jack audio interface (Linux)

View file

@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50) AC_PREREQ(2.50)
AC_INIT(src/main.cpp) AC_INIT(src/main.cpp)
AM_INIT_AUTOMAKE(llcon,2.2.1cvs) AM_INIT_AUTOMAKE(llcon,2.2.1)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
@ -29,13 +29,13 @@ if test "$enable_alsa" = "yes"; then
AC_CHECK_LIB(asound, snd_pcm_open, , enable_sound=no) AC_CHECK_LIB(asound, snd_pcm_open, , enable_sound=no)
else else
dnl checks for JACK audio dnl checks for JACK audio
AC_CHECK_HEADER([jack/jack.h], have_jack=yes, have_jack=no, [ AC_CHECK_HEADER([jack/jack.h], have_jack=yes, have_jack=no, [
]) ])
dnl AM_CONDITIONAL(USE_JACK,test "$have_jack" = yes) dnl AM_CONDITIONAL(USE_JACK,test "$have_jack" = yes)
if test "$have_jack" = yes; then if test "$have_jack" = yes; then
JACK_LIB="-ljack" JACK_LIB="-ljack"
AC_DEFINE(USE_JACK, 1,[Define to enable JACK input module]) AC_DEFINE(USE_JACK, 1,[Define to enable JACK input module])
fi fi
fi fi

View file

@ -43,7 +43,7 @@
// version and application name (always use this version) // version and application name (always use this version)
#undef VERSION #undef VERSION
#define VERSION "2.2.1cvs" #define VERSION "2.2.1"
#define APP_NAME "llcon" #define APP_NAME "llcon"
// file name for logging file // file name for logging file