Updated laz_synapse.lpk

git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@213 7c85be65-684b-0410-a082-b2ed4fbef004
This commit is contained in:
geby 2021-06-12 10:00:11 +00:00
parent 0217de74a6
commit 9ee9fa486e
2 changed files with 14 additions and 9 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<Package Version="4">
<Package Version="5">
<Name Value="laz_synapse"/>
<Author Value="Lukas Gebauer"/>
<CompilerOptions>
@ -8,13 +8,10 @@
<SearchPaths>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Other>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Description Value="Ararat Synapse: network communications suite"/>
<Description Value="Ararat Synapse: network communications suite."/>
<Version Major="40" Minor="1"/>
<Files Count="33">
<Files Count="35">
<Item1>
<Filename Value="asn1util.pas"/>
<UnitName Value="asn1util"/>
@ -149,6 +146,14 @@
<Filename Value="tlntsend.pas"/>
<UnitName Value="tlntsend"/>
</Item33>
<Item34>
<Filename Value="ssl_openssl.pas"/>
<UnitName Value="ssl_openssl"/>
</Item34>
<Item35>
<Filename Value="ssl_openssl_lib.pas"/>
<UnitName Value="ssl_openssl_lib"/>
</Item35>
</Files>
<RequiredPkgs Count="1">
<Item1>
@ -161,7 +166,6 @@
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
<IgnoreBinaries Value="False"/>
</PublishOptions>
</Package>
</CONFIG>

View File

@ -4,6 +4,7 @@
unit laz_synapse;
{$warn 5023 off : no warning about unused units}
interface
uses
@ -11,7 +12,7 @@ uses
imapsend, ldapsend, mimeinln, mimemess, mimepart, nntpsend, pingsend,
pop3send, slogsend, smtpsend, snmpsend, sntpsend, synachar, synacode,
synacrypt, synadbg, synafpc, synaicnv, synaip, synamisc, synaser, synautil,
synsock, tlntsend;
synsock, tlntsend, ssl_openssl, ssl_openssl_lib;
implementation