synsock.pas - better handling of ssPosix

git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@241 7c85be65-684b-0410-a082-b2ed4fbef004
This commit is contained in:
geby
2022-01-08 17:00:43 +00:00
parent dbaf64ce1b
commit 8414d7b862

View File

@@ -1,9 +1,9 @@
{==============================================================================| {==============================================================================|
| Project : Ararat Synapse | 005.002.003 | | Project : Ararat Synapse | 005.002.004 |
|==============================================================================| |==============================================================================|
| Content: Socket Independent Platform Layer | | Content: Socket Independent Platform Layer |
|==============================================================================| |==============================================================================|
| Copyright (c)1999-2013, Lukas Gebauer | | Copyright (c)1999-2022, Lukas Gebauer |
| All rights reserved. | | All rights reserved. |
| | | |
| Redistribution and use in source and binary forms, with or without | | Redistribution and use in source and binary forms, with or without |
@@ -33,7 +33,7 @@
| DAMAGE. | | DAMAGE. |
|==============================================================================| |==============================================================================|
| The Initial Developer of the Original Code is Lukas Gebauer (Czech Republic).| | The Initial Developer of the Original Code is Lukas Gebauer (Czech Republic).|
| Portions created by Lukas Gebauer are Copyright (c)2001-2013. | | Portions created by Lukas Gebauer are Copyright (c)2001-2022. |
| All Rights Reserved. | | All Rights Reserved. |
|==============================================================================| |==============================================================================|
| Contributor(s): | | Contributor(s): |
@@ -72,15 +72,15 @@ unit synsock;
{$I ssfpc.inc} {$I ssfpc.inc}
{$ENDIF OS2} {$ENDIF OS2}
{$ELSE} {$ELSE}
{$I sslinux.inc} {$IFDEF POSIX}
{$I ssposix.inc} //experimental!
{$ELSE}
{$I sslinux.inc}
{$ENDIF}
{$ENDIF} {$ENDIF}
{$ENDIF} {$ENDIF}
{$ENDIF} {$ENDIF}
{$ENDIF} {$ENDIF}
{$IFDEF POSIX}
//Posix.SysSocket
{$I ssposix.inc} //experimental!
{$ENDIF}
end. end.