initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
config BR2_PACKAGE_CIVETWEB
|
||||
bool "civetweb"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_CIVETWEB_SERVER if !BR2_PACKAGE_CIVETWEB_LIB
|
||||
help
|
||||
Full featured embedded web server with Lua support.
|
||||
|
||||
https://sourceforge.net/projects/civetweb
|
||||
|
||||
if BR2_PACKAGE_CIVETWEB
|
||||
|
||||
config BR2_PACKAGE_CIVETWEB_SERVER
|
||||
bool "enable the web server application"
|
||||
help
|
||||
Include the web server and its config files.
|
||||
|
||||
config BR2_PACKAGE_CIVETWEB_LIB
|
||||
bool "enable library for embedding"
|
||||
help
|
||||
Enable the civetweb library for embedding in another
|
||||
application.
|
||||
|
||||
config BR2_PACKAGE_CIVETWEB_WITH_LUA
|
||||
bool "enable Lua support"
|
||||
# required by the bundled Sqlite3 and Lua code
|
||||
depends on !BR2_STATIC_LIBS
|
||||
help
|
||||
Enable Lua support in Civetweb. Note that this will use a
|
||||
version of Lua and Sqlite bundled within the Civetweb
|
||||
sources, and not the packages from Buildroot.
|
||||
|
||||
comment "lua support needs a toolchain w/ dynamic library"
|
||||
depends on BR2_STATIC_LIBS
|
||||
|
||||
endif
|
||||
|
||||
comment "civetweb needs a toolchain w/ threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 90a533422944ab327a4fbb9969f0845d0dba05354f9cacce3a5005fa59f593b9 civetweb-1.15.tar.gz
|
||||
sha256 24d3d2aee56ae3cddcdf3392c1250877818108314233cf15f2bc9eb3ac298934 LICENSE.md
|
||||
@@ -0,0 +1,93 @@
|
||||
################################################################################
|
||||
#
|
||||
# civetweb
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CIVETWEB_VERSION = 1.15
|
||||
CIVETWEB_SITE = $(call github,civetweb,civetweb,v$(CIVETWEB_VERSION))
|
||||
CIVETWEB_LICENSE = MIT
|
||||
CIVETWEB_LICENSE_FILES = LICENSE.md
|
||||
CIVETWEB_CPE_ID_VENDOR = civetweb_project
|
||||
|
||||
CIVETWEB_CONF_OPTS = TARGET_OS=LINUX WITH_IPV6=1 \
|
||||
$(if $(BR2_INSTALL_LIBSTDCPP),WITH_CPP=1)
|
||||
CIVETWEB_COPT = -DHAVE_POSIX_FALLOCATE=0
|
||||
CIVETWEB_LIBS = -lpthread -lm
|
||||
CIVETWEB_SYSCONFDIR = /etc
|
||||
CIVETWEB_HTMLDIR = /var/www
|
||||
CIVETWEB_INSTALL_OPTS = \
|
||||
DOCUMENT_ROOT="$(CIVETWEB_HTMLDIR)" \
|
||||
CONFIG_FILE2="$(CIVETWEB_SYSCONFDIR)/civetweb.conf" \
|
||||
HTMLDIR="$(TARGET_DIR)$(CIVETWEB_HTMLDIR)" \
|
||||
SYSCONFDIR="$(TARGET_DIR)$(CIVETWEB_SYSCONFDIR)"
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_SYNC_4),)
|
||||
CIVETWEB_COPT += -DNO_ATOMICS=1
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_CIVETWEB_WITH_LUA),y)
|
||||
CIVETWEB_CONF_OPTS += WITH_LUA=1
|
||||
CIVETWEB_LIBS += -ldl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
CIVETWEB_COPT += -DNO_SSL_DL
|
||||
CIVETWEB_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs openssl`
|
||||
CIVETWEB_DEPENDENCIES += openssl host-pkgconf
|
||||
else
|
||||
CIVETWEB_COPT += -DNO_SSL
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
CIVETWEB_CONF_OPTS += WITH_ZLIB=1
|
||||
CIVETWEB_LIBS += -lz
|
||||
CIVETWEB_DEPENDENCIES += zlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_CIVETWEB_SERVER),y)
|
||||
CIVETWEB_BUILD_TARGETS += build
|
||||
CIVETWEB_INSTALL_TARGETS += install
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_CIVETWEB_LIB),y)
|
||||
CIVETWEB_INSTALL_STAGING = YES
|
||||
CIVETWEB_INSTALL_TARGETS += install-headers
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS)$(BR2_STATIC_SHARED_LIBS),y)
|
||||
CIVETWEB_BUILD_TARGETS += lib
|
||||
CIVETWEB_INSTALL_TARGETS += install-lib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_SHARED_LIBS)$(BR2_STATIC_SHARED_LIBS),y)
|
||||
CIVETWEB_BUILD_TARGETS += slib
|
||||
CIVETWEB_INSTALL_TARGETS += install-slib
|
||||
endif
|
||||
|
||||
endif # BR2_PACKAGE_CIVETWEB_LIB
|
||||
|
||||
define CIVETWEB_BUILD_CMDS
|
||||
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(CIVETWEB_BUILD_TARGETS) \
|
||||
$(CIVETWEB_CONF_OPTS) \
|
||||
COPT="$(CIVETWEB_COPT)" LIBS="$(CIVETWEB_LIBS)"
|
||||
endef
|
||||
|
||||
define CIVETWEB_INSTALL_STAGING_CMDS
|
||||
mkdir -p $(STAGING_DIR)/usr/include
|
||||
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(CIVETWEB_INSTALL_TARGETS) \
|
||||
PREFIX="$(STAGING_DIR)/usr" \
|
||||
$(CIVETWEB_INSTALL_OPTS) \
|
||||
$(CIVETWEB_CONF_OPTS) \
|
||||
COPT='$(CIVETWEB_COPT)'
|
||||
endef
|
||||
|
||||
define CIVETWEB_INSTALL_TARGET_CMDS
|
||||
mkdir -p $(TARGET_DIR)/usr/include
|
||||
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(CIVETWEB_INSTALL_TARGETS) \
|
||||
PREFIX="$(TARGET_DIR)/usr" \
|
||||
$(CIVETWEB_INSTALL_OPTS) \
|
||||
$(CIVETWEB_CONF_OPTS) \
|
||||
COPT='$(CIVETWEB_COPT)'
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user