mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
https://github.com/rurban/safeclib/blob/v3.9.1/ChangeLog Removed backports from patches 0001 & 0002. Removed patch 0003 which is included in this release. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
20 lines
692 B
Makefile
20 lines
692 B
Makefile
################################################################################
|
|
#
|
|
# safeclib
|
|
#
|
|
################################################################################
|
|
|
|
SAFECLIB_VERSION = 3.9.1
|
|
SAFECLIB_SITE = \
|
|
https://github.com/rurban/safeclib/releases/download/v$(SAFECLIB_VERSION)
|
|
SAFECLIB_SOURCE = safeclib-$(SAFECLIB_VERSION).tar.xz
|
|
SAFECLIB_LICENSE = MIT
|
|
SAFECLIB_LICENSE_FILES = COPYING
|
|
SAFECLIB_INSTALL_STAGING = YES
|
|
SAFECLIB_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -std=c99"
|
|
# -fstack-protector-strong is used by default. Disable that so the
|
|
# BR2_SSP_* options in the toolchain wrapper are used instead
|
|
SAFECLIB_CONF_OPTS = --disable-hardening
|
|
|
|
$(eval $(autotools-package))
|