Hi Lukas, here it is again:

In Synachar.pas I have the following:
uses
{$IFNDEF WIN32}
    {$IFNDEF FPC}
       Libc,
    {$ELSE}
       {$IFDEF FPC_USE_LIBC}
          Libc,
       {$ENDIF}
    {$ENDIF}
    {$ELSE}
        Windows,
    {$ENDIF}
       SysUtils,
       synautil, synacode, synaicnv;

Here is what I did to make the compilation work:

{$IFNDEF MSWINDOWS}
    {$IFNDEF FPC}
  Libc,
    {$ELSE}
      {$IFDEF FPC_USE_LIBC}
  Libc,
      {$ENDIF}
    {$ENDIF}
  {$ELSE}
  Windows,
  {$ENDIF}
  SysUtils,
  synautil, synacode, synaicnv;

but I didn't check the functionality yet.

Also, as Petr mentioned, there are some obsolete warnings regarding the
FormatSettings in some of the units (as he mentioned)

On Thu, Oct 4, 2012 at 12:06 PM, Lukas Gebauer <gebyl...@mlp.cz> wrote:

> > Few days ago, I sent this group an example from synachar.pas and its
> > IFDEFS that made the compilation impossible in 64bit mode but I got no
> > response. Because synapse is actually a lot of units that not always
> > have a correlation between them, some units might work for you and
> > some won't.
>
> Sorry, I cannot find it here. :-o
>
>
>
> --
> Lukas Gebauer.
>
> http://synapse.ararat.cz/ - Ararat Synapse - TCP/IP Lib.
> http://geoget.ararat.cz/ - Geocaching solution
>
>
>
> ------------------------------------------------------------------------------
> Don't let slow site performance ruin your business. Deploy New Relic APM
> Deploy New Relic app performance management and know exactly
> what is happening inside your Ruby, Python, PHP, Java, and .NET app
> Try New Relic at no cost today and get our sweet Data Nerd shirt too!
> http://p.sf.net/sfu/newrelic-dev2dev
> _______________________________________________
> synalist-public mailing list
> synalist-public@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/synalist-public
>
------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
_______________________________________________
synalist-public mailing list
synalist-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/synalist-public

Reply via email to