4cb4ab5cf9
This commit adds an upstream patch to the sngrep package that fixes the detection of wchar capable ncurses. Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# sngrep
|
|
#
|
|
################################################################################
|
|
|
|
SNGREP_VERSION = v1.4.3
|
|
SNGREP_SITE = $(call github,irontec,sngrep,$(SNGREP_VERSION))
|
|
SNGREP_LICENSE = GPL-3.0+
|
|
SNGREP_LICENSE_FILES = LICENSE
|
|
SNGREP_AUTORECONF = YES
|
|
SNGREP_DEPENDENCIES = libpcap ncurses host-pkgconf
|
|
|
|
SNGREP_CONF_ENV += \
|
|
$(if $(BR2_STATIC_LIBS),LIBS="`$(STAGING_DIR)/usr/bin/pcap-config --static --libs`")
|
|
|
|
# This patch fixes ncurses wchar detection
|
|
SNGREP_PATCH = \
|
|
https://github.com/irontec/sngrep/pull/191/commits/4740f3341a99eaec105dee202a6fa7828212cdf1.patch
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y)
|
|
SNGREP_CONF_OPTS += --enable-unicode
|
|
else
|
|
SNGREP_CONF_OPTS += --disable-unicode
|
|
endif
|
|
|
|
# openssl and gnutls can't be enabled at the same time.
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
SNGREP_DEPENDENCIES += openssl
|
|
SNGREP_CONF_OPTS += --with-openssl --without-gnutls
|
|
# gnutls support also requires libgcrypt
|
|
else ifeq ($(BR2_PACKAGE_GNUTLS)$(BR2_PACKAGE_LIBGCRYPT),yy)
|
|
SNGREP_DEPENDENCIES += gnutls
|
|
SNGREP_CONF_OPTS += --with-gnutls --without-openssl
|
|
else
|
|
SNGREP_CONF_OPTS += --without-gnutls --without-openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PCRE),y)
|
|
SNGREP_DEPENDENCIES += pcre
|
|
SNGREP_CONF_OPTS += --with-pcre
|
|
else
|
|
SNGREP_CONF_OPTS += --without-pcre
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|