Tk problem building / installing using Perl 5.12.0.1 on x64

2010-07-27 Thread Paul
OS: Windows 7, 64-bit Perl 5.12.0.1 Module: Tk  804.029 I'm not sure if this is a Perl::Tk issue, or a MinGW wanted any input guidance on where I need to go with this. I attempted to install using CPAN, but encountered errors during the build. Looking at the errors generated using dmake, the

Re: Tk problem building / installing using Perl 5.12.0.1 on x64

2010-07-27 Thread Curtis Jewell
It's a Perl::Tk error (as I recall 804.028_502 working on x64 without such a fix) - report it to them. But thanks for letting us know. --Curtis On Tue, 27 Jul 2010 10:39 -0500, Paul alabamap...@gmail.com wrote: OS: Windows 7, 64-bit Perl 5.12.0.1 Module: Tk  804.029 I'm not sure if this

Re: Tk problem building / installing using Perl 5.12.0.1 on x64

2010-07-27 Thread kmx
Dne 27.7.2010 17:39, Paul napsal(a): ... Starting at 43: 43: #ifdef _DWIN64 44: typedef __int64 XID; 45: #else 46: typedef unsigned long XID; 47: #endif I was able to correct this by changing this to 43: #ifdef _DWIN64 44: #include inttypes.h 45: typedef __int64 XID; 46: #else 47:

Re: Tk problem building / installing using Perl 5.12.0.1 on x64

2010-07-27 Thread Paul
Thanks for the input. I agree that the unsigned long long is a better solution, and I'll test that tomorrow morning. If all works, then I'll submit the bug with the patch against the Tk module. Paul