Re: [Synalist] SSL/TLS support is not compiled - Kylix
Pascal TCP/IP Library
Brought to you by:
geby
|
From: João H. S. <jua...@ms...> - 2015-11-19 11:48:30
|
Thanks for answer,
Checking the name files, the lib names in the ssl_openssl_lib.pas, and according to following code: {$IFNDEF MSWINDOWS} {$IFDEF DARWIN} DLLSSLName: string = 'libssl.dylib'; DLLUtilName: string = 'libcrypto.dylib'; {$ELSE} DLLSSLName: string = 'libssl.so'; DLLUtilName: string = 'libcrypto.so'; {$ENDIF} {$ELSE} DLLSSLName: string = 'ssleay32.dll'; DLLSSLName2: string = 'libssl32.dll'; DLLUtilName: string = 'libeay32.dll'; {$ENDIF}
I understood that the libraries are:libssl.solibcrypto.so
But those libs are there in the \lib folder.I copied them to the same folder of my application but unforntunatelly the error "-2: SSL/TLS support is not compiled "remains.
Do you have another clue?
Tks AgainJohn
> From: geb...@ml...
> To: syn...@li...
> Date: Thu, 12 Nov 2015 17:04:17 +0100
> Subject: Re: [Synalist] SSL/TLS support is not compiled - Kylix
>
> Please, check real openssl library filenames and verify if it is same
> as names used by ssl_openssl_lib.pas. Maybe is a problem with
> compiler defines and unit is compiled with wrong library names.
>
> When wrong library names are used, then Openssl not loaded and you
> got your error.
>
> L.
>
>
> > Hi,
> > That's the point...
> > I couldn't use lazarus because my Company has a version builder of
> > their products. And this builder use Cross Kylix... Unfortunately.
>
>
> --
> Lukas Gebauer.
>
> http://synapse.ararat.cz/ - Ararat Synapse - TCP/IP Lib.
> http://geoget.ararat.cz/ - Geocaching solution
>
>
> ------------------------------------------------------------------------------
> _______________________________________________
> synalist-public mailing list
> syn...@li...
> https://lists.sourceforge.net/lists/listinfo/synalist-public
|