Android Makefile changed to automatically update linphone version

This commit is contained in:
Sylvain Berfini 2012-08-02 12:45:15 +02:00
parent 271814cdfb
commit 5f2640d57a
2 changed files with 8 additions and 2 deletions

View file

@ -50,13 +50,17 @@ ifndef MY_LOG_DOMAIN
MY_LOG_DOMAIN = \"Linphone\"
endif
ifndef LINPHONE_VERSION
LINPHONE_VERSION = \"Devel\"
endif
LOCAL_CFLAGS += \
-D_BYTE_ORDER=_LITTLE_ENDIAN \
-DORTP_INET6 \
-DINET6 \
-DOSIP_MT \
-DENABLE_TRACE \
-DLINPHONE_VERSION=\"3.4.0\" \
-DLINPHONE_VERSION=\"$(LINPHONE_VERSION)\" \
-DLINPHONE_PLUGINS_DIR=\"\\tmp\" \
-DLOG_DOMAIN=$(MY_LOG_DOMAIN)

View file

@ -1,6 +1,8 @@
dnl Process this file with autoconf to produce a configure script.
dnl Keep this line, it is parsed by Android Makefile
LINPHONE_VERSION=3.5.2
AC_INIT([linphone],[3.5.2],[linphone-developers@nongnu.org])
AC_INIT([linphone],[$LINPHONE_VERSION],[linphone-developers@nongnu.org])
AC_CANONICAL_SYSTEM
AC_CONFIG_SRCDIR([coreapi/linphonecore.c])