7470c21c86
The linphone package never provided video support. While this commit https://git.buildroot.net/buildroot/commit/package/linphone?id=dec04466549cd40e2696ae7725e90d6559bee640 added support for ffmpeg 3.0+ the next commit, which fixed the build of the bundled mediastreamer2 library, added --disable-video: https://git.buildroot.net/buildroot/commit/package/linphone?id=f3492b28d89c1f2448c9662a6f755cb48e8c0f0b At this point the ffmpeg 3.0 patches could have been removed because ffmpeg is only used if video support is enabled:6c2a608800/acinclude.m4 (L80)
6c2a608800/acinclude.m4 (L107)
This patch catches up on that to avoid changing the upstream URL for the patches which is broken. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# linphone
|
|
#
|
|
################################################################################
|
|
|
|
LINPHONE_VERSION_MAJOR = 3.6
|
|
LINPHONE_VERSION = $(LINPHONE_VERSION_MAJOR).1
|
|
LINPHONE_SITE = http://download-mirror.savannah.gnu.org/releases/linphone/$(LINPHONE_VERSION_MAJOR).x/sources
|
|
LINPHONE_CONF_OPTS = \
|
|
--disable-strict --disable-video
|
|
# configure is out of sync causing deplibs linking issues
|
|
LINPHONE_AUTORECONF = YES
|
|
LINPHONE_INSTALL_STAGING = YES
|
|
LINPHONE_DEPENDENCIES = host-pkgconf libeXosip2 speex
|
|
LINPHONE_LICENSE = GPL-2.0+
|
|
LINPHONE_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_arc),y)
|
|
# toolchain __arc__ define conflicts with libosip2 source
|
|
LINPHONE_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -U__arc__"
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGTK2)$(BR2_PACKAGE_XORG7),yy)
|
|
LINPHONE_CONF_OPTS += --enable-gtk_ui
|
|
LINPHONE_DEPENDENCIES += libgtk2
|
|
else
|
|
LINPHONE_CONF_OPTS += --disable-gtk_ui
|
|
endif
|
|
|
|
# needed for bundled mediastreamer2
|
|
LINPHONE_DEPENDENCIES += host-intltool host-gettext
|
|
|
|
ifeq ($(BR2_PACKAGE_ALSA_LIB_MIXER)$(BR2_PACKAGE_ALSA_LIB_PCM),yy)
|
|
LINPHONE_CONF_OPTS += --enable-alsa
|
|
LINPHONE_DEPENDENCIES += alsa-lib
|
|
else
|
|
LINPHONE_CONF_OPTS += --disable-alsa
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBV4L),y)
|
|
LINPHONE_CONF_OPTS += --enable-libv4l1 --enable-libv4l2
|
|
LINPHONE_DEPENDENCIES += libv4l
|
|
else
|
|
LINPHONE_CONF_OPTS += --disable-libv4l1 --disable-libv4l2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBUPNP),y)
|
|
LINPHONE_DEPENDENCIES += libupnp
|
|
LINPHONE_CONF_OPTS += --enable-upnp
|
|
else
|
|
LINPHONE_CONF_OPTS += --disable-upnp
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|