summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Querna <pquerna@apache.org>2006-07-15 22:05:02 +0000
committerPaul Querna <pquerna@apache.org>2006-07-15 22:05:02 +0000
commitd19490ff9b00b0542a846510a0be7e17984e732e (patch)
tree7601c69bdf6663109f393ad29bffbb9ab70bba93
parent8744237828966e0474c027a0c07e82d3bfd06154 (diff)
downloadhttpd-d19490ff9b00b0542a846510a0be7e17984e732e.tar.gz
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
-rw-r--r--support/Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/support/Makefile.in b/support/Makefile.in
index 670e465d9d..248da70d57 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)