258bb8e161
Pass --disable-strict to avoid having -Werror in CFLAGS. Having -Werror in CFLAGS can lead to build problems depending on the gcc version that is being used and it should not be used in released code. Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
24 lines
670 B
Makefile
24 lines
670 B
Makefile
################################################################################
|
|
#
|
|
# linphone
|
|
#
|
|
################################################################################
|
|
|
|
LINPHONE_VERSION = 3.5.2
|
|
LINPHONE_SITE = http://download-mirror.savannah.gnu.org/releases/linphone/3.5.x/sources/
|
|
LINPHONE_CONF_OPT = \
|
|
--enable-external-ortp \
|
|
--enable-external-mediastreamer \
|
|
--disable-strict
|
|
|
|
LINPHONE_DEPENDENCIES = host-pkgconf ortp mediastreamer libeXosip2 speex
|
|
|
|
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))
|