This is the mail archive of the cygwin-patches mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch] un-NT-ify cygcheck (was: cygwin 1.5.25-7: cygcheck does not work?)


Christopher Faylor wrote:

> Unless Corinna says differently, I think she wants to be in control of
> what goes into the branch so I don't want to suggest that you should
> check it in there too.

Okay, I'll let her take care of the branch since she's been handling all
the releases from it.

> The problem in this case would be "Hey!  Look at what cygcheck is saying!
> You are using Windows 9x!  You can't do that!"

In a sense it already does this:

    case VER_PLATFORM_WIN32_WINDOWS:
      switch (osversion.dwMinorVersion)
	{
	case 0:
	  osname = "95 (not supported)";
	  break;
	case 10:
	  osname = "98 (not supported)";
	  break;
	case 90:
	  osname = "ME (not supported)";
	  break;
	default:
	  osname = "9X (not supported)";
	  break;
	}
      break;

Brian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]