Skip to content

Commit 7983afd

Browse files
committed
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
1 parent b526241 commit 7983afd

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

support/Makefile.in

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ DISTCLEAN_TARGETS = apxs apachectl dbmmanage log_server_status \
33

44
CLEAN_TARGETS = suexec
55

6-
PROGRAMS = htpasswd htdigest rotatelogs logresolve ab checkgid htdbm htcacheclean httxt2dbm fcgistarter
6+
PROGRAMS = htpasswd htdigest rotatelogs logresolve ab htdbm htcacheclean httxt2dbm
7+
8+
ifneq (win32,${OS})
9+
PROGRAMS += checkgid fcgistarter
10+
endif
11+
712
TARGETS = $(PROGRAMS)
813

914
PROGRAM_LDADD = $(UTIL_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS)

0 commit comments

Comments
 (0)