From e5db40ae2affc3c7ae8f2b9eeb3da60bffaabb5b Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sat, 18 Jan 2014 20:15:12 +0000 Subject: Remove more Win9x support (trunk only). git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1559408 13f79535-47bb-0310-9956-ffa450edef68 --- misc/win32/misc.c | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'misc') diff --git a/misc/win32/misc.c b/misc/win32/misc.c index 3591f63c6..c4c5a4473 100644 --- a/misc/win32/misc.c +++ b/misc/win32/misc.c @@ -106,33 +106,6 @@ apr_status_t apr_get_oslevel(apr_oslevel_e *level) apr_os_level = APR_WIN_XP; } } -#ifndef WINNT - else if (oslev.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS) { - TCHAR *prevision; - if (prevision = oslev.szCSDVersion) { - while (*prevision && !apr_isupper(*prevision)) { - prevision++; - } - } - else prevision = _T(""); - - if (oslev.dwMinorVersion < 10) { - if (*prevision < _T('C')) - apr_os_level = APR_WIN_95; - else - apr_os_level = APR_WIN_95_OSR2; - } - else if (oslev.dwMinorVersion < 90) { - if (*prevision < _T('A')) - apr_os_level = APR_WIN_98; - else - apr_os_level = APR_WIN_98_SE; - } - else { - apr_os_level = APR_WIN_ME; - } - } -#endif #ifdef _WIN32_WCE else if (oslev.dwPlatformId == VER_PLATFORM_WIN32_CE) { -- cgit v1.2.1