diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-27 14:29:24 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-27 14:29:24 +0100 |
commit | 0923816c64f2912226164d171e0ae92d39fb979e (patch) | |
tree | a5165189f10201339c2500a53091641cf2904cdb | |
parent | bb02e4c0b367c004565178f50e3ea74ee98e249f (diff) | |
download | buildroot-0923816c64f2912226164d171e0ae92d39fb979e.tar.gz buildroot-0923816c64f2912226164d171e0ae92d39fb979e.zip |
stunnel: use BR2_TOOLCHAIN_HAS_SSP instead of BR2_ENABLE_SSP
All packages use BR2_TOOLCHAIN_HAS_SSP to determine whether they can
use SSP suppport or not, except stunnel. Therefore, this commit makes
stunnel consistent with other packages. This is also necessary in
preparation to the removal of BR2_ENABLE_SSP in favor of a choice
between various SSP options.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/stunnel/stunnel.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/stunnel/stunnel.mk b/package/stunnel/stunnel.mk index ae187a6295..bfa7d3f2bf 100644 --- a/package/stunnel/stunnel.mk +++ b/package/stunnel/stunnel.mk @@ -11,7 +11,7 @@ STUNNEL_DEPENDENCIES = openssl STUNNEL_CONF_OPTS = --with-ssl=$(STAGING_DIR)/usr --with-threads=fork \ --disable-libwrap STUNNEL_CONF_ENV = \ - ax_cv_check_cflags___fstack_protector=$(if $(BR2_ENABLE_SSP),yes,no) + ax_cv_check_cflags___fstack_protector=$(if $(BR2_TOOLCHAIN_HAS_SSP),yes,no) STUNNEL_LICENSE = GPLv2+ STUNNEL_LICENSE_FILES = COPYING COPYRIGHT.GPL |