$(if $(CONFIG_FFMPEG_PROTOCOL_$(c)),--enable-protocol="$(c)") \
)
+ifneq ($(CONFIG_FFMPEG_PROTOCOL_IPv6),)
+ FFMPEG_CONFIGURE_IPv6:= --enable-ipv6
+else
+ FFMPEG_CONFIGURE_IPv6:= --disable-ipv6
+endif
+
+
define Build/Configure
# this is *NOT* GNU configure
( cd $(PKG_BUILD_DIR); \
--enable-ffmpeg \
--enable-ffserver \
--enable-gpl \
- --disable-ipv6 \
--enable-libfaad \
--enable-pthreads \
--disable-optimizations \
--disable-bsfs \
--disable-protocols \
$(FFMPEG_CONFIGURE_PROTOCOLS) \
+ $(FFMPEG_CONFIGURE_IPv6) \
)
endef