Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 29919 invoked from network); 7 Apr 2011 19:33:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Apr 2011 19:33:13 -0000 Received: (qmail 90463 invoked by uid 500); 7 Apr 2011 19:33:13 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 90398 invoked by uid 500); 7 Apr 2011 19:33:13 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 90391 invoked by uid 99); 7 Apr 2011 19:33:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Apr 2011 19:33:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Apr 2011 19:33:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A0A8E23889E2; Thu, 7 Apr 2011 19:32:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1089950 - in /httpd/httpd/trunk/support: Makefile.in config.m4 Date: Thu, 07 Apr 2011 19:32:49 -0000 To: cvs@httpd.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110407193249.A0A8E23889E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: trawick Date: Thu Apr 7 19:32:49 2011 New Revision: 1089950 URL: http://svn.apache.org/viewvc?rev=1089950&view=rev Log: don't build checkgid or fcgistarter on MinGW PR: 49535 (subset of reported issues, replacement for supplied patch) Modified: httpd/httpd/trunk/support/Makefile.in httpd/httpd/trunk/support/config.m4 Modified: httpd/httpd/trunk/support/Makefile.in URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/support/Makefile.in?rev=1089950&r1=1089949&r2=1089950&view=diff ============================================================================== --- httpd/httpd/trunk/support/Makefile.in (original) +++ httpd/httpd/trunk/support/Makefile.in Thu Apr 7 19:32:49 2011 @@ -3,7 +3,7 @@ DISTCLEAN_TARGETS = apxs apachectl dbmma CLEAN_TARGETS = suexec -PROGRAMS = htpasswd htdigest rotatelogs logresolve ab checkgid htdbm htcacheclean httxt2dbm fcgistarter +PROGRAMS = htpasswd htdigest rotatelogs logresolve ab htdbm htcacheclean httxt2dbm $(NONPORTABLE_SUPPORT) TARGETS = $(PROGRAMS) PROGRAM_LDADD = $(UTIL_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS) Modified: httpd/httpd/trunk/support/config.m4 URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/support/config.m4?rev=1089950&r1=1089949&r2=1089950&view=diff ============================================================================== --- httpd/httpd/trunk/support/config.m4 (original) +++ httpd/httpd/trunk/support/config.m4 Thu Apr 7 19:32:49 2011 @@ -114,6 +114,20 @@ fi ]) APACHE_SUBST(fcgistarter_LTFLAGS) +# Configure or check which of the non-portable support programs can be enabled. + +NONPORTABLE_SUPPORT="" +case $host in + *mingw*) + ;; + *) + NONPORTABLE_SUPPORT="checkgid fcgistarter" + ;; +esac +APACHE_SUBST(NONPORTABLE_SUPPORT) + +# Configure the ulimit -n command used by apachectl. + case $host in *aix*) # this works in any locale, unlike the default command below, which