diff options
author | Paul Querna <pquerna@apache.org> | 2006-07-16 00:05:02 +0200 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2006-07-16 00:05:02 +0200 |
commit | d19490ff9b00b0542a846510a0be7e17984e732e (patch) | |
tree | 7601c69bdf6663109f393ad29bffbb9ab70bba93 /support/Makefile.in | |
parent | Disable the getpwnam and getgrnam functions, since they aren't available on w... (diff) | |
download | apache2-d19490ff9b00b0542a846510a0be7e17984e732e.tar.xz apache2-d19490ff9b00b0542a846510a0be7e17984e732e.zip |
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
Diffstat (limited to 'support/Makefile.in')
-rw-r--r-- | support/Makefile.in | 7 |
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) |