Browse Source

Merge pull request #3210 from dangowrt/fix-x264-build

libx264: Fix x264 build (asm)
lilik-openwrt-22.03
Ted Hess 8 years ago
committed by GitHub
parent
commit
4da62bfbcf
1 changed files with 7 additions and 5 deletions
  1. +7
    -5
      libs/libx264/Makefile

+ 7
- 5
libs/libx264/Makefile View File

@ -38,20 +38,22 @@ else
endif
endif
ifneq ($(CONFIG_SOFT_FLOAT),)
CONFIGURE_VARS+= AS=
MAKE_FLAGS+= AS=
CONFIGURE_ARGS += --disable-asm
endif
CONFIGURE_ARGS += \
--enable-shared \
--enable-pic \
--disable-cli
ifeq ($(CONFIG_SOFT_FLOAT),y)
CONFIGURE_ARGS += --disable-asm
endif
define Package/libx264
SECTION:=libs
CATEGORY:=Libraries
TITLE:=H264/AVC free codec library.
DEPENDS:=@BUILD_PATENTED
DEPENDS:=@BUILD_PATENTED @!powerpc||BROKEN
URL:=http://www.videolan.org/developers/x264.html
endef


Loading…
Cancel
Save