z505 / powtils

Powtils are units to make websites with freepascal and delphi as a regular executable
http://z505.com/powtils/idx.shtml
6 stars 2 forks source link

64 bit fix (re: Leonardo Rame) #4

Open z505 opened 8 years ago

z505 commented 8 years ago

There was an issue with 64 bit windows, relating to an IFDEF WIN32 define, rather than IFDEF WINDOWS or IFDEF WIN64... this needs to be fixed, (very minor issue but caused Leonardo to have an issue on 64 bit windows). It was a minor IFDEF issue but was tricky to figure out why 64bit windows was not compiling.

The issue is simply that a while ago we were accustomed for using IFDEF Win32 instead of IFDEF windows, I believe, when 64 bit platforms were not so popular and win32 was the only system available so we did not anticipate win64 and should have used IFDEF WINDOWS (which may have not been available at the time, as win32 was king)