DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2819
Version: 1.3-current


Manolo and Ian, thanks for testing and your confirmation. AFAICT there is
no single MinGW version, since it consists of many packages, and MSYS is
still at version 1.0, so...

Just for completeness, may I ask both of you to compile the attached
program mingw.c and run the following commands?

$ uname -a && gcc --version && gcc -o mingw mingw.c && ./mingw

This one line is all to compile and run the program and get more info.

My output is:

$ uname -a && gcc --version && gcc -o mingw mingw.c && ./mingw
MINGW32_NT-6.1 MY-PC 1.0.16(0.48/3/2) 2010-09-29 00:07 i686 Msys
gcc.exe (GCC) 4.6.2
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.

__W32API_VERSION  =  3.17
__MINGW32_VERSION =  3.20

I ran this on Windows 7, and I think that 1.0.16... is the MSYS DLL
version (maybe).

After your tests I'm confident that the patch is okay to apply, but I'd
like to have the used versions documented with this STR. Thanks.


Link: http://www.fltk.org/str.php?L2819
Version: 1.3-current
#include <w32api.h>
#include <stdio.h>
int main(int argc, char **argv) {
  printf ("__W32API_VERSION  = %5.2f\n",__W32API_VERSION);
  printf ("__MINGW32_VERSION = %5.2f\n",__MINGW32_VERSION);
  return 0;
}
_______________________________________________
fltk-bugs mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-bugs

Reply via email to