mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 23:34:31 +04:00
vectorscan: drop custom DEPENDS_COMMON
There is no reason to have custom specific DEPENDS_COMMON, I dropped it and added it to DEPENDS. Simplified, easier to read and understand. Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
This commit is contained in:
@@ -24,8 +24,6 @@ PKG_BUILD_DEPENDS:=ragel/host python3/host boost/host
|
|||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
include $(INCLUDE_DIR)/cmake.mk
|
include $(INCLUDE_DIR)/cmake.mk
|
||||||
|
|
||||||
DEPENDS_COMMON:=@(x86_64||aarch64)
|
|
||||||
|
|
||||||
# With at least version 5.4.12, Neon/ASIMD is required for Arm support
|
# With at least version 5.4.12, Neon/ASIMD is required for Arm support
|
||||||
ifeq ($(CONFIG_CPU_NEON),)
|
ifeq ($(CONFIG_CPU_NEON),)
|
||||||
PKG_BUILD_FLAGS := skip
|
PKG_BUILD_FLAGS := skip
|
||||||
@@ -48,7 +46,7 @@ define Package/vectorscan-headers
|
|||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
TITLE:=Vectorscan Headers
|
TITLE:=Vectorscan Headers
|
||||||
URL:=https://github.com/VectorCamp/vectorscan
|
URL:=https://github.com/VectorCamp/vectorscan
|
||||||
DEPENDS:= $(DEPENDS_COMMON)
|
DEPENDS:=@(x86_64||aarch64)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/vectorscan-runtime
|
define Package/vectorscan-runtime
|
||||||
@@ -56,7 +54,7 @@ define Package/vectorscan-runtime
|
|||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
TITLE:=Vectorscan Runtime
|
TITLE:=Vectorscan Runtime
|
||||||
URL:=https://github.com/VectorCamp/vectorscan
|
URL:=https://github.com/VectorCamp/vectorscan
|
||||||
DEPENDS:= +libstdcpp +libsqlite3 $(DEPENDS_COMMON)
|
DEPENDS:= +libstdcpp +libsqlite3 @(x86_64||aarch64)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/vectorscan-headers/description
|
define Package/vectorscan-headers/description
|
||||||
|
|||||||
Reference in New Issue
Block a user