mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
This bump includes upstream commit https://git.openwrt.org/?p=project/uhttpd.git;a=commitdiff;h=ebb92e6b339b88bbc6b76501b6603c52d4887ba1 which fixes cmake 4 builds. No backports necessary because the cmake 4 bump commite46695bbe4is not present in any older branches. Updated hash of header file which is used as license file due to upstream commits: https://github.com/openwrt/uhttpd/commits/master/uhttpd.h Disabled new configure option UCODE_SUPPORT which was added by upstream commit: https://git.openwrt.org/?p=project/uhttpd.git;a=commitdiff;h=3ceccd02d86bf4d6609f46d8b30963cc52034cc2 Fixes: https://autobuild.buildroot.net/results/cc2/cc265d34aed684b88032edd04ca0fc88186ec676/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit88c353351a) Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
41 lines
996 B
Makefile
41 lines
996 B
Makefile
################################################################################
|
|
#
|
|
# uhttpd
|
|
#
|
|
################################################################################
|
|
|
|
UHTTPD_VERSION = 506e24987b97fbc866005bfb71316bd63601a1ef
|
|
UHTTPD_SITE = https://git.openwrt.org/project/uhttpd.git
|
|
UHTTPD_SITE_METHOD = git
|
|
UHTTPD_LICENSE = ISC
|
|
UHTTPD_LICENSE_FILES = uhttpd.h
|
|
UHTTPD_DEPENDENCIES = libubox json-c
|
|
UHTTPD_CONF_OPTS += -DUCODE_SUPPORT=OFF
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBXCRYPT),y)
|
|
UHTTPD_DEPENDENCIES += libxcrypt
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LUA_5_1),y)
|
|
UHTTPD_DEPENDENCIES += lua
|
|
UHTTPD_CONF_OPTS += -DLUA_SUPPORT=ON
|
|
else
|
|
UHTTPD_CONF_OPTS += -DLUA_SUPPORT=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_USTREAM_SSL),y)
|
|
UHTTPD_DEPENDENCIES += ustream-ssl
|
|
UHTTPD_CONF_OPTS += -DTLS_SUPPORT=ON
|
|
else
|
|
UHTTPD_CONF_OPTS += -DTLS_SUPPORT=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_UBUS),y)
|
|
UHTTPD_DEPENDENCIES += ubus
|
|
UHTTPD_CONF_OPTS += -DUBUS_SUPPORT=ON
|
|
else
|
|
UHTTPD_CONF_OPTS += -DUBUS_SUPPORT=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|