4db12ce1f6
The configure script is out of sync causing deplibs linking issues so recreate it. Fixes: http://autobuild.buildroot.net/results/006/00673f04d0ce6cb0c5828e68f236a4eb8d7920db/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
811 B
Makefile
27 lines
811 B
Makefile
################################################################################
|
|
#
|
|
# linphone
|
|
#
|
|
################################################################################
|
|
|
|
LINPHONE_VERSION = 3.6.1
|
|
LINPHONE_SITE = http://download-mirror.savannah.gnu.org/releases/linphone/3.6.x/sources
|
|
LINPHONE_CONF_OPT = \
|
|
--enable-external-ortp \
|
|
--enable-external-mediastreamer \
|
|
--disable-strict
|
|
# configure is out of sync causing deplibs linking issues
|
|
LINPHONE_AUTORECONF = YES
|
|
LINPHONE_DEPENDENCIES = host-pkgconf ortp mediastreamer libeXosip2 speex
|
|
LINPHONE_LICENSE = GPLv2+
|
|
LINPHONE_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGTK2)$(BR2_PACKAGE_XORG7),yy)
|
|
LINPHONE_CONF_OPT += --enable-gtk_ui
|
|
LINPHONE_DEPENDENCIES += libgtk2
|
|
else
|
|
LINPHONE_CONF_OPT += --disable-gtk_ui
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|