Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 20232 invoked from network); 17 Jul 2007 10:36:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Jul 2007 10:36:49 -0000 Received: (qmail 95409 invoked by uid 500); 17 Jul 2007 10:36:41 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 95325 invoked by uid 500); 17 Jul 2007 10:36:41 -0000 Mailing-List: contact dev-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 dev@httpd.apache.org Received: (qmail 95265 invoked by uid 99); 17 Jul 2007 10:36:41 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Jul 2007 03:36:41 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [213.191.128.81] (HELO mxout2.iskon.hr) (213.191.128.81) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 17 Jul 2007 03:36:37 -0700 Received: (qmail 20384 invoked from network); 17 Jul 2007 12:36:14 +0200 X-Remote-IP: 213.191.142.122 Received: from unknown (HELO mx.iskon.hr) (213.191.142.122) by mxout2.iskon.hr with SMTP; 17 Jul 2007 12:36:14 +0200 Received: (qmail 24557 invoked from network); 17 Jul 2007 12:36:14 +0200 X-AVScan: ClamAV X-Remote-IP: 89.164.18.175 Received: from 18-175.dsl.iskon.hr (HELO ?192.168.0.168?) (89.164.18.175) by mx.iskon.hr with SMTP; 17 Jul 2007 12:36:14 +0200 Message-ID: <469C9B9E.5040709@apache.org> Date: Tue, 17 Jul 2007 12:36:14 +0200 From: Mladen Turk User-Agent: Mozilla MIME-Version: 1.0 To: dev@httpd.apache.org Subject: Re: svn commit: r556860 - /httpd/httpd/branches/2.2.x/STATUS References: <20070717092333.195091A981A@eris.apache.org> <469C97AB.7080901@rowe-clan.net> In-Reply-To: <469C97AB.7080901@rowe-clan.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org William A. Rowe, Jr. wrote: > mturk@apache.org wrote: >> Author: mturk >> Date: Tue Jul 17 02:23:30 2007 >> New Revision: 556860 >> >> URL: http://svn.apache.org/viewvc?view=rev&rev=556860 >> Log: >> Comment the backport concerns for ApacheMonitor >> >> --- httpd/httpd/branches/2.2.x/STATUS (original) >> +++ httpd/httpd/branches/2.2.x/STATUS Tue Jul 17 02:23:30 2007 >> @@ -113,6 +113,9 @@ >> wrowe notes post today to list, can we please test for >= VISTA >> so this doesn't break again upon the release of longhorn server >> or 'nextgen' windows? >> + mturk notes: No, because we cannot be sure that any further version >> + will not break either the service or GUI api, in which case we >> + would need a separate code depending on the post VISTA versions. > > But this is *nonsense*. We may as well simply have APR stop working at each > new version, if you are that worried about application compatibility. > Right. I didn't probably express myself clear enough. We need a detection for VISTA, but this shouldn't break the functionality if we have a VISTA+ You are right, the GetSystemOSVersion should always return TRUE if dwPlatformId == VER_PLATFORM_WIN32_NT I'll propose additional patch to the existing one and update the status: Index: ApacheMonitor.c =================================================================== --- ApacheMonitor.c (revision 556830) +++ ApacheMonitor.c (working copy) @@ -292,9 +292,6 @@ else if (osvi.dwMajorVersion == 6) { *dwVersion = OS_VERSION_VISTA; } - else { - return FALSE; - } break; case VER_PLATFORM_WIN32_WINDOWS: Regards, Mladen.