Use the latest upstream verified commit.
Also fixes multiple issues like:
https://autobuild.buildroot.org/results/fe33a0d9cfa242cbcda0c5fb759b84efc6662097
that were due to the usage of OpenSSL deprecated routines
(ERR_remove_state and ENGINE_cleanup)
The build failure happen since Buildroot commit [1] "package/httping:
update to latest git" and when BR2_PACKAGE_HTTPING_SSL=y.
[1] 1c2fa85cb1
Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
[Julien:
- remove test-pkg result from commit log,
- add info on the failure
]
Signed-off-by: Julien Olivain <ju.o@free.fr>
23 lines
602 B
Makefile
23 lines
602 B
Makefile
################################################################################
|
|
#
|
|
# httping
|
|
#
|
|
################################################################################
|
|
|
|
HTTPING_VERSION = ffb9201042813c58d020df41697f6445df96f438
|
|
HTTPING_SITE = https://github.com/folkertvanheusden/HTTPing
|
|
HTTPING_SITE_METHOD = git
|
|
HTTPING_LICENSE = AGPL-3.0
|
|
HTTPING_LICENSE_FILES = LICENSE
|
|
|
|
ifeq ($(BR2_PACKAGE_HTTPING_TUI),y)
|
|
HTTPING_DEPENDENCIES += ncurses fftw-double
|
|
HTTPING_CONF_OPTS += -DUSE_TUI=1
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HTTPING_SSL),y)
|
|
HTTPING_DEPENDENCIES += openssl
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|