From d563c448f7971a8171c101f23e92c19aa2327a90 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 13 Mar 2006 15:19:14 +0000 Subject: r14322: Remove the BROKEN_CC flag for now. None of the buildfarm hosts has a C compiler that doesn't support -c and -o together and it makes the build system more complicated. This also means the current handling of broken C compilers is most likely broken as it isn't tested. This detection can be readded when we stumble upon a C compiler that supports both C99 (or at least the parts of it we need) and also has broken -c/-o handling, which I think is unlikely to happen. (This used to be commit 7fd74cfbb90063c79994fb6691dbe456d9ad9efa) --- source4/param/config.mk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source4/param') diff --git a/source4/param/config.mk b/source4/param/config.mk index 7b97331310..3b06bd99ff 100644 --- a/source4/param/config.mk +++ b/source4/param/config.mk @@ -5,3 +5,7 @@ OBJ_FILES = ../dynconfig.o \ generic.o REQUIRED_SUBSYSTEMS = LIBBASIC PRIVATE_PROTO_HEADER = param.h + +dynconfig.o: dynconfig.c Makefile + @echo Compiling $< + @$(CC) $(CFLAGS) $(PICFLAG) $(PATH_FLAGS) -c $< -o $@ -- cgit