From: Michael Tremer Date: Wed, 7 Oct 2020 08:04:38 +0000 (+0000) Subject: avahi: Disable custom stack protector configuration X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=commitdiff_plain;h=42c19f78d84a9472b3dffcf8c17a6b7ca4baaf34 avahi: Disable custom stack protector configuration We already pass -fstack-protector-strong, which might be overridden by -fstack-protector-all. We also know that SSP works in our version of libc and do not need to link against libssp. Signed-off-by: Michael Tremer --- diff --git a/lfs/avahi b/lfs/avahi index 6807a080da..2ed13dd444 100644 --- a/lfs/avahi +++ b/lfs/avahi @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = avahi -PAK_VER = 6 +PAK_VER = 7 DEPS = dbus libdaemon @@ -82,6 +82,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --sysconfdir=/etc \ --localstatedir=/var \ --with-avahi-user=avahi \ + --disable-stack-protector \ --disable-qt3 \ --disable-qt4 \ --disable-qt5 \