mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
make it better.
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@419 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
parent
de16131f6f
commit
b9f62a4dea
3 changed files with 7 additions and 6 deletions
|
|
@ -1,6 +1,6 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_INIT([linphone],[3.1.1],[linphone-developers@nongnu.org])
|
||||
AC_INIT([linphone],[3.1.1.1],[linphone-developers@nongnu.org])
|
||||
|
||||
dnl Source packaging numbers
|
||||
|
||||
|
|
@ -22,7 +22,7 @@ AC_MSG_NOTICE([licensed under the terms of the General Public License (GPL)])
|
|||
|
||||
AM_INIT_AUTOMAKE([tar-ustar])
|
||||
AC_CONFIG_HEADER(config.h)
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_SUBST([mkdir_p])
|
||||
AC_ISC_POSIX
|
||||
AC_PROG_CC
|
||||
|
|
@ -34,6 +34,7 @@ ifdef([IT_PROG_INTLTOOL],[IT_PROG_INTLTOOL],[AC_PROG_INTLTOOL])
|
|||
dnl Initialize libtool
|
||||
AC_PROG_LIBTOOL
|
||||
AM_PROG_LIBTOOL
|
||||
|
||||
AC_ENABLE_SHARED(yes)
|
||||
AC_ENABLE_STATIC(no)
|
||||
dnl Add the languages which your application supports here.
|
||||
|
|
|
|||
|
|
@ -1423,7 +1423,7 @@ void linphone_core_init_media_streams(LinphoneCore *lc){
|
|||
audio_stream_enable_echo_limiter(lc->audiostream,ELControlMic);
|
||||
else if (strcasecmp(type,"speaker")==0)
|
||||
audio_stream_enable_echo_limiter(lc->audiostream,ELControlSpeaker);
|
||||
if (gain>0){
|
||||
if (gain!=-1){
|
||||
audio_stream_enable_gain_control(lc->audiostream,TRUE);
|
||||
}
|
||||
|
||||
|
|
@ -1470,7 +1470,7 @@ static void post_configure_audio_streams(LinphoneCore *lc){
|
|||
if (force!=-1)
|
||||
ms_filter_call_method(f,MS_VOLUME_SET_EA_FORCE,&force);
|
||||
if (gain!=-1)
|
||||
ms_filter_call_method(st->volsend,MS_VOLUME_SET_GAIN,&gain);
|
||||
audio_stream_set_mic_gain(st,gain);
|
||||
}
|
||||
if (lc->vtable.dtmf_received!=NULL){
|
||||
/* replace by our default action*/
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
|
|||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
|
||||
SHELL = /bin/sh
|
||||
SHELL = @SHELL@
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
|
|
@ -56,7 +56,7 @@ ALL_LINGUAS = @ALL_LINGUAS@
|
|||
|
||||
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi)
|
||||
|
||||
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep ^$$lang$$`"; then printf "$$lang "; fi; done; fi)
|
||||
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep '^$$lang$$' $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep '^$$lang$$'`"; then printf "$$lang "; fi; done; fi)
|
||||
|
||||
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue