mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
bump version to 2022.02.9
add miyoo_defconfig
This commit is contained in:
@@ -1,13 +1,10 @@
|
||||
config BR2_PACKAGE_CPPCMS
|
||||
bool "cppcms"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
||||
depends on !BR2_STATIC_LIBS # dlopen()
|
||||
depends on BR2_USE_WCHAR
|
||||
select BR2_PACKAGE_ZLIB
|
||||
select BR2_PACKAGE_PCRE
|
||||
select BR2_PACKAGE_LIBGCRYPT
|
||||
help
|
||||
CppCMS is a Free High Performance Web Development Framework
|
||||
(not a CMS) aimed for Rapid Web Application Development. It
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
# From http://sourceforge.net/projects/cppcms/files/cppcms/1.2.1/
|
||||
sha1 9cb25cc5d507d2f4235326ba3815eba252b4ac77 cppcms-1.2.1.tar.bz2
|
||||
md5 2bb259fefb86532e404207c71c094a0c cppcms-1.2.1.tar.bz2
|
||||
sha1 9cb25cc5d507d2f4235326ba3815eba252b4ac77 cppcms-1.2.1.tar.bz2
|
||||
md5 2bb259fefb86532e404207c71c094a0c cppcms-1.2.1.tar.bz2
|
||||
# Locally computed:
|
||||
sha256 10fec7710409c949a229b9019ea065e25ff5687103037551b6f05716bf6cac52 cppcms-1.2.1.tar.bz2
|
||||
sha256 fb7c15ddf590037d4cd18ebd61148a2304b9243369d238a64f599182377e32db COPYING.TXT
|
||||
sha256 3e4012cc5950e05bedfdd2f00ceffe1ef71c46ac8c79f07e237ecb23c773f65f MIT.TXT
|
||||
sha256 d6ce062e5cf4f7e3c536d7d2fee84c882c45245f1848ed3162401f2b29fa2b4b THIRD_PARTY_SOFTWARE.TXT
|
||||
sha256 10fec7710409c949a229b9019ea065e25ff5687103037551b6f05716bf6cac52 cppcms-1.2.1.tar.bz2
|
||||
sha256 fb7c15ddf590037d4cd18ebd61148a2304b9243369d238a64f599182377e32db COPYING.TXT
|
||||
sha256 3e4012cc5950e05bedfdd2f00ceffe1ef71c46ac8c79f07e237ecb23c773f65f MIT.TXT
|
||||
sha256 d6ce062e5cf4f7e3c536d7d2fee84c882c45245f1848ed3162401f2b29fa2b4b THIRD_PARTY_SOFTWARE.TXT
|
||||
|
||||
@@ -18,7 +18,7 @@ CPPCMS_CONF_OPTS = \
|
||||
-DCMAKE_SKIP_RPATH=ON \
|
||||
-DCMAKE_CXX_FLAGS="$(CPPCMS_CXXFLAGS)"
|
||||
|
||||
CPPCMS_DEPENDENCIES = zlib pcre libgcrypt
|
||||
CPPCMS_DEPENDENCIES = pcre
|
||||
|
||||
ifeq ($(BR2_PACKAGE_CPPCMS_ICU),y)
|
||||
CPPCMS_CONF_OPTS += -DDISABLE_ICU_LOCALE=OFF
|
||||
@@ -28,6 +28,27 @@ else
|
||||
CPPCMS_CONF_OPTS += -DDISABLE_ICU_LOCALE=ON
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
||||
CPPCMS_CONF_OPTS += -DDISABLE_GCRYPT=OFF
|
||||
CPPCMS_DEPENDENCIES += libgcrypt
|
||||
else
|
||||
CPPCMS_CONF_OPTS += -DDISABLE_GCRYPT=ON
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
CPPCMS_CONF_OPTS += -DDISABLE_OPENSSL=OFF
|
||||
CPPCMS_DEPENDENCIES += openssl
|
||||
else
|
||||
CPPCMS_CONF_OPTS += -DDISABLE_OPENSSL=ON
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
CPPCMS_CONF_OPTS += -DDISABLE_GZIP=OFF
|
||||
CPPCMS_DEPENDENCIES += zlib
|
||||
else
|
||||
CPPCMS_CONF_OPTS += -DDISABLE_GZIP=ON
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
||||
# posix backend needs monetary.h which isn't available on uClibc
|
||||
CPPCMS_CONF_OPTS += -DDISABLE_POSIX_LOCALE=on
|
||||
|
||||
Reference in New Issue
Block a user