4e36e8f208
hiawatha needs mbedtls3 since bump to version 11.1 in commit
24e4c888c3
:
/home/giuliobenetti/autobuild/run/instance-3/output-1/build/hiawatha-11.1/src/wigwam.c:39:10: fatal error: mbedtls/psa_util.h: No such file or directory
39 | #include "mbedtls/psa_util.h"
| ^~~~~~~~~~~~~~~~~~~~
As mbedtls 3.x is not backward compatible with mbedtls 2.x, disable
system mbedtls to let hiawatha uses its own copy (which will be
installed in $(TARGET_DIR)/usr/lib/hiawatha)
Fixes:
- http://autobuild.buildroot.org/results/064af90aa95c28781d96d7eca0f14841fce0687a
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
comment "hiawatha needs a toolchain w/ threads, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_HIAWATHA
|
|
bool "hiawatha"
|
|
# needs fork()
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # __sync_*_4 intrisics
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on !BR2_STATIC_LIBS
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
Hiawatha is a webserver for Unix and has been built with
|
|
security in mind. This resulted in a highly secure
|
|
webserver, in both code and features.
|
|
|
|
This webserver runs on Linux, BSD, MacOS X and
|
|
Windows. Although it can run any kind of CGI / FastCGI
|
|
application, it has been optimized for usage with PHP. Most
|
|
well known PHP frameworks and CMS applications have been
|
|
tested with Hiawatha and ran without a problem. Hiawatha
|
|
supports many web and HTTP features such as CGI/FastCGI,
|
|
HTTP authentication, virtual host support, request
|
|
pipelining, keep alive connections, URL rewriting and many
|
|
more.
|
|
|
|
http://www.hiawatha-webserver.org/
|
|
|
|
if BR2_PACKAGE_HIAWATHA
|
|
|
|
config BR2_PACKAGE_HIAWATHA_SSL
|
|
bool "hiawatha TLS support"
|
|
|
|
endif
|