configure: add --disable-libffmpeg_static_x264 to satisfy i386 debian builds
This commit is contained in:
parent
27382c275f
commit
b941aedf93
4 changed files with 7 additions and 7 deletions
|
@ -39,7 +39,7 @@
|
|||
],
|
||||
|
||||
"buildcmd": [
|
||||
"./configure --disable-dvbscan --enable-libffmpeg_static --enable-hdhomerun_static",
|
||||
"./configure --disable-dvbscan --enable-libffmpeg_static --disable-libffmpeg_static_x264 --enable-hdhomerun_static",
|
||||
"make -j ${PARALLEL}"
|
||||
]
|
||||
},
|
||||
|
@ -82,7 +82,7 @@
|
|||
],
|
||||
|
||||
"buildcmd": [
|
||||
"./configure --disable-dvbscan --enable-libffmpeg_static --enable-hdhomerun_static",
|
||||
"./configure --disable-dvbscan --enable-libffmpeg_static --disable-libffmpeg_static_x264 --enable-hdhomerun_static",
|
||||
"make -j ${PARALLEL}"
|
||||
]
|
||||
}
|
||||
|
|
3
Makefile
3
Makefile
|
@ -470,7 +470,8 @@ ${BUILDDIR}/libffmpeg_stamp: ${ROOTDIR}/libav_static/build/ffmpeg/lib/libavcodec
|
|||
@touch $@
|
||||
|
||||
${ROOTDIR}/libav_static/build/ffmpeg/lib/libavcodec.a:
|
||||
$(MAKE) -f Makefile.ffmpeg build
|
||||
CONFIG_LIBFFMPEG_STATIC_X264=$(CONFIG_LIBFFMPEG_STATIC_X264) \
|
||||
$(MAKE) -f Makefile.ffmpeg build
|
||||
|
||||
# Static HDHOMERUN library
|
||||
|
||||
|
|
|
@ -150,12 +150,10 @@ $(LIBAVDIR)/$(LIBVORBIS)/.tvh_build: \
|
|||
# libx264
|
||||
#
|
||||
|
||||
ARCH = $(shell $(CC) -dumpmachine | cut -d '-' -f 1)
|
||||
|
||||
ifneq (,$(filter i386 i486 i586 i686 pentium,$(ARCH)))
|
||||
ifneq (yes,$(CONFIG_LIBFFMPEG_STATIC_X264))
|
||||
|
||||
$(LIBAVDIR)/$(LIBX264)/.tvh_download:
|
||||
@echo "***** PLEASE FIX !!!! libx264 build for i386 *****"
|
||||
@echo "***** LIBX264 STATIC BUILD IS DISABLED, USING INSTALLED PACKAGE *****"
|
||||
@mkdir -p $(LIBAVDIR)/$(LIBX264)
|
||||
@touch $@
|
||||
|
||||
|
|
1
configure
vendored
1
configure
vendored
|
@ -34,6 +34,7 @@ OPTIONS=(
|
|||
"zlib:auto"
|
||||
"libav:auto"
|
||||
"libffmpeg_static:no"
|
||||
"libffmpeg_static_x264:yes"
|
||||
"inotify:auto"
|
||||
"epoll:auto"
|
||||
"uriparser:auto"
|
||||
|
|
Loading…
Add table
Reference in a new issue