mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
7333207eaf
The poppler package failed to build for me with errors such as this one: host/aarch64-buildroot-linux-gnu/include/c++/10.3.0/cstdlib:75:15: fatal error: stdlib.h: No such file or directory 75 | #include_next <stdlib.h> | ^~~~~~~~~~ Changing the CMake option to a link-specific one fixes the issue. Also change other packages with the same issue: cutelyst, gerbera, kf5-modemmanager-qt, kodi and wampcc. Signed-off-by: Gleb Mazovetskiy <glex.spb@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# cutelyst
|
|
#
|
|
################################################################################
|
|
|
|
CUTELYST_VERSION = 2.11.0
|
|
CUTELYST_SITE = https://github.com/cutelyst/cutelyst/archive/v$(CUTELYST_VERSION)
|
|
CUTELYST_INSTALL_STAGING = YES
|
|
CUTELYST_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
CUTELYST_LICENSE = LGPL-2.1+
|
|
CUTELYST_LICENSE_FILES = COPYING
|
|
CUTELYST_DEPENDENCIES = qt5base
|
|
|
|
CUTELYST_CONF_OPTS += \
|
|
-DPLUGIN_CSRFPROTECTION=ON \
|
|
-DPLUGIN_VIEW_GRANTLEE=OFF
|
|
|
|
# Qt 5.8 needs atomics, which on various architectures are in -latomic
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
CUTELYST_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPWQUALITY),y)
|
|
CUTELYST_CONF_OPTS += -DPLUGIN_VALIDATOR_PWQUALITY=ON
|
|
CUTELYST_DEPENDENCIES += libpwquality
|
|
else
|
|
CUTELYST_CONF_OPTS += -DPLUGIN_VALIDATOR_PWQUALITY=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JEMALLOC),y)
|
|
CUTELYST_CONF_OPTS += -DUSE_JEMALLOC=ON
|
|
CUTELYST_DEPENDENCIES += jemalloc
|
|
else
|
|
CUTELYST_CONF_OPTS += -DUSE_JEMALLOC=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|