mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
package/httping: bump to version a1c5fdcf289cf7d1d8245579150bcf670f90d248
Enable gettext support. Make all options configurable. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
340a4bd4f8
commit
e954dd0a21
@@ -1,3 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 22c794df06a1c680e923891a445a3745fc88e01b24854af1be8457a37be19fe6 httping-ffb9201042813c58d020df41697f6445df96f438-git4.tar.gz
|
||||
sha256 07b6b36e88506810ef19eb987a7ca477a88fb15fa6beccc509ed8f4a06bd64c1 httping-a1c5fdcf289cf7d1d8245579150bcf670f90d248-git4.tar.gz
|
||||
sha256 8486a10c4393cee1c25392769ddd3b2d6c242d6ec7928e1414efff7dfb2f07ef LICENSE
|
||||
|
||||
@@ -4,19 +4,31 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
HTTPING_VERSION = ffb9201042813c58d020df41697f6445df96f438
|
||||
HTTPING_VERSION = a1c5fdcf289cf7d1d8245579150bcf670f90d248
|
||||
HTTPING_SITE = https://github.com/folkertvanheusden/HTTPing
|
||||
HTTPING_SITE_METHOD = git
|
||||
HTTPING_LICENSE = AGPL-3.0
|
||||
HTTPING_LICENSE_FILES = LICENSE
|
||||
HTTPING_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HTTPING_TUI),y)
|
||||
HTTPING_DEPENDENCIES += ncurses fftw-double
|
||||
HTTPING_CONF_OPTS += -DUSE_TUI=1
|
||||
HTTPING_CONF_OPTS += -DUSE_TUI=ON -DUSE_FFTW3=ON
|
||||
else
|
||||
HTTPING_CONF_OPTS += -DUSE_TUI=OFF -DUSE_FFTW3=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HTTPING_SSL),y)
|
||||
HTTPING_DEPENDENCIES += openssl
|
||||
HTTPING_CONF_OPTS += -DUSE_SSL=ON
|
||||
else
|
||||
HTTPING_CONF_OPTS += -DUSE_SSL=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_SYSTEM_ENABLE_NLS),y)
|
||||
HTTPING_CONF_OPTS += -DUSE_GETTEXT=ON
|
||||
else
|
||||
HTTPING_CONF_OPTS += -DUSE_GETTEXT=OFF
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
|
||||
Reference in New Issue
Block a user