From d1720c36eb84638ccb9c919b02dc37c5b48952fa Mon Sep 17 00:00:00 2001 From: Mark Seaborn Date: Sun, 1 Feb 2009 17:41:09 +0000 Subject: [PATCH] Fix build of nscd by disabling -fstack-protector (needs further investigation). This means the build now runs to completion. This fixes "make install" so that it now installs gnu/stubs-32.h. --- nscd/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nscd/Makefile b/nscd/Makefile index 364ddfe8dd..13cb3ea34e 100644 --- a/nscd/Makefile +++ b/nscd/Makefile @@ -92,9 +92,9 @@ nscd-cflags = -DIS_IN_nscd=1 -D_FORTIFY_SOURCE=2 ifeq (yesyes,$(have-fpie)$(build-shared)) nscd-cflags += $(pie-ccflag) endif -ifeq (yes,$(have-ssp)) -nscd-cflags += -fstack-protector -endif +# ifeq (yes,$(have-ssp)) +# nscd-cflags += -fstack-protector +# endif CFLAGS-nscd.c += $(nscd-cflags) CFLAGS-connections.c += $(nscd-cflags) -- 2.11.4.GIT