From: Paul Querna Date: Sat, 15 Jul 2006 22:05:02 +0000 (+0000) Subject: Makefile.in: Don't try to compile checkgid and fcgistarter on win32 when using the... X-Git-Tag: 2.3.0~2247 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d19490ff9b00b0542a846510a0be7e17984e732e;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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)