From d19490ff9b00b0542a846510a0be7e17984e732e Mon Sep 17 00:00:00 2001 From: Paul Querna Date: Sat, 15 Jul 2006 22:05:02 +0000 Subject: [PATCH] Makefile.in: Don't try to compile checkgid and fcgistarter on win32 when using the autotools build system. /support: Update svn:ignore for generated exe files git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@422298 13f79535-47bb-0310-9956-ffa450edef68 --- support/Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/support/Makefile.in b/support/Makefile.in index 670e465d9dc..248da70d573 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -3,7 +3,12 @@ DISTCLEAN_TARGETS = apxs apachectl dbmmanage log_server_status \ CLEAN_TARGETS = suexec -PROGRAMS = htpasswd htdigest rotatelogs logresolve ab checkgid htdbm htcacheclean httxt2dbm fcgistarter +PROGRAMS = htpasswd htdigest rotatelogs logresolve ab htdbm htcacheclean httxt2dbm + +ifneq (win32,${OS}) + PROGRAMS += checkgid fcgistarter +endif + TARGETS = $(PROGRAMS) PROGRAM_LDADD = $(UTIL_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS) -- 2.47.2