
A8A.
Moderator: Ras
Yes,I'll put it on my site too soon. Or put up a link.
Hello:F. Bluemers wrote:Yes,I'll put it on my site too soon. Or put up a link.
I'll leave my old version on the site too,just in case someone still needs it.
Best
Fonzy
I did some testing with all the Microsoft compilers I have access to.F. Bluemers wrote:Hi Bob
Thanks for the bugreport.I'll fix 'adapter.ccp'
As for microsoft:
I compiled pg with vc c++ 2005 express.
No problems printing pv strings.
Thanks for the effort. But this problem should be evident immediately on the same OS it was compiled on. I'm sorry I didn't make that clear.F. Bluemers wrote:I tested the compiled exe under windows 98se with virtual pc and it seems to works well.
Code: Select all
#ifdef _MSC_VER
Code: Select all
#if defined(_MSC_VER) || defined(WIN32) || defined(_WIN32) || defined(WINDOWS)
No exceptions allowed eh?Code:
#if defined(_MSC_VER) || defined(WIN32) || defined(_WIN32) || defined(WINDOWS)
I suspect, and my first google search hit sorta confirmed this, that the common element here is linking with msvcrt, which apparently VS2005 doesn't do anymore by default. If that's what's really the case here, then of course to be correct, the preprocessor should test for exactly that, if possible. I don't know how though. But since the method VS2005 uses appears to work either way, using "%I64d" for any windows build seems an acceptable solution.F. Bluemers wrote:Hi BobNo exceptions allowed eh?Code:
#if defined(_MSC_VER) || defined(WIN32) || defined(_WIN32) || defined(WINDOWS)
This is a successor to 1.4w10,the changes are relative small.hgm wrote:Is this now the same version as 1.4w10UCIb13, or a direct successor of it, or are we forking?