Amidey 0 Posted 3 hours ago TWSocketServer causes a compilation error without USE_SSL in version 9.5, while it works correctly in version 9.4. I'm using Delphi 12.3. { Comment out the next line to remove SSL code from the binary. } { Beware many components and features will be unavailable. } //{$DEFINE USE_SSL} Share this post Link to post
Angus Robertson 683 Posted 2 hours ago I no longer test building without USE_SSL, it will be unsupported in ICS V10. You will need to add {$IFDEF USE_SSL} {$ENDIF} around those two lines, they used to be in an SSL only function, but moved. Angus Share this post Link to post
Amidey 0 Posted 1 hour ago (edited) Thank you, I added {$IFDEF USE_SSL} {$ENDIF} and the compilation error was resolved. Is there any consequence of not using those lines? Edited 1 hour ago by Amidey Share this post Link to post