Update buildroot & docker (#25)
* Update docker & buildroot * Fix * fix versions
This commit is contained in:
@@ -49,7 +49,6 @@ FFMPEG_CONF_OPTS = \
|
||||
--disable-frei0r \
|
||||
--disable-libopencore-amrnb \
|
||||
--disable-libopencore-amrwb \
|
||||
--disable-libcdio \
|
||||
--disable-libdc1394 \
|
||||
--disable-libgsm \
|
||||
--disable-libilbc \
|
||||
@@ -203,18 +202,25 @@ else
|
||||
FFMPEG_CONF_OPTS += --disable-libfdk-aac
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FFMPEG_GPL)$(BR2_PACKAGE_LIBCDIO_PARANOIA),yy)
|
||||
FFMPEG_CONF_OPTS += --enable-libcdio
|
||||
FFMPEG_DEPENDENCIES += libcdio-paranoia
|
||||
else
|
||||
FFMPEG_CONF_OPTS += --disable-libcdio
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
FFMPEG_CONF_OPTS += --enable-gnutls --disable-openssl
|
||||
FFMPEG_DEPENDENCIES += gnutls
|
||||
else
|
||||
FFMPEG_CONF_OPTS += --disable-gnutls
|
||||
ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
# openssl isn't license compatible with GPL
|
||||
ifeq ($(BR2_PACKAGE_FFMPEG_GPL)x$(BR2_PACKAGE_FFMPEG_NONFREE),yx)
|
||||
FFMPEG_CONF_OPTS += --disable-openssl
|
||||
else
|
||||
FFMPEG_CONF_OPTS += --enable-openssl
|
||||
FFMPEG_DEPENDENCIES += libopenssl
|
||||
FFMPEG_DEPENDENCIES += openssl
|
||||
endif
|
||||
else
|
||||
FFMPEG_CONF_OPTS += --disable-openssl
|
||||
|
||||
Reference in New Issue
Block a user