Re: [fpc-devel] fpcmake

2019-05-22 Thread Kevin Lyda
On Wed, May 22, 2019 at 8:06 AM Sven Barth via fpc-devel wrote: > If you want to use it for yourself you might better want to take a look at > fpmake which uses Pascal code. > fpcmake is only used by the compiler and RTL as well as a skeleton for the > fpmake packages nowadays. Honestly, full

Re: [fpc-devel] Compiler picks wrong overload

2019-05-22 Thread Pascal Riekenberg
No one? This is a showstopper! Regards Pascal > Pascal Riekenberg hat am 21. Mai 2019 um 12:54 > geschrieben: > > > Is someone working on these two issues? > > https://bugs.freepascal.org/view.php?id=35580 > https://bugs.freepascal.org/view.php?id=35576 > > Lazarus is not usable with fpc

Re: [fpc-devel] OpenSSL

2019-05-22 Thread Dave Connolly
Perfect - thank you. On Wed, 22 May 2019 at 12:35, Michael Van Canneyt wrote: > > > Indeed. Silly me... > Added to interface, revision 42114. > > Michael. > > On Wed, 22 May 2019, Dave Connolly wrote: > > > Just missing the function definition > > > > function OpenSSLGetVersion(t:

Re: [fpc-devel] OpenSSL

2019-05-22 Thread Michael Van Canneyt
Indeed. Silly me... Added to interface, revision 42114. Michael. On Wed, 22 May 2019, Dave Connolly wrote: Just missing the function definition function OpenSSLGetVersion(t: cint):String; On Wed, 22 May 2019 at 11:53, Michael Van Canneyt wrote: On Wed, 22 May 2019, Dave Connolly

Re: [fpc-devel] OpenSSL

2019-05-22 Thread Dave Connolly
Just missing the function definition function OpenSSLGetVersion(t: cint):String; On Wed, 22 May 2019 at 11:53, Michael Van Canneyt wrote: > > > On Wed, 22 May 2019, Dave Connolly wrote: > > > Hi all, > > > > Would it be possible to add the following function to openssl.pas? > > > >

Re: [fpc-devel] OpenSSL

2019-05-22 Thread Michael Van Canneyt
On Wed, 22 May 2019, Dave Connolly wrote: Hi all, Would it be possible to add the following function to openssl.pas? _OpenSSLVersion := GetProcAddr(SSLLibHandle, 'OpenSSL_version'); . . . function OpenSSLGetVersion(t: cint):String; begin if InitSSLInterface and Assigned(_OpenSSLVersion)

[fpc-devel] OpenSSL

2019-05-22 Thread Dave Connolly
Hi all, Would it be possible to add the following function to openssl.pas? _OpenSSLVersion := GetProcAddr(SSLLibHandle, 'OpenSSL_version'); . . . function OpenSSLGetVersion(t: cint):String; begin if InitSSLInterface and Assigned(_OpenSSLVersion) then Result := _OpenSSL_version(t) else

Re: [fpc-devel] fpcmake

2019-05-22 Thread Marco van de Voort
Op 5/22/2019 om 9:06 AM schreef Sven Barth via fpc-devel: In [target] you can specify "programs" but it's also needed to specify scripts, privileged_programs (sbin) and privileged_scripts. Though the scripts targets could go in [install] as well. I get that these are

Re: [fpc-devel] fpcmake

2019-05-22 Thread Sven Barth via fpc-devel
Kevin Lyda schrieb am Di., 21. Mai 2019, 22:04: > Looking at using fpcmake and it comes up short. I'm wondering if some > patches to it would be acceptable. Broken down by section... > > In [install] it would be nice to be able to specify some other file > locations. Specifically, man pages

[fpc-devel] Compiler picks wrong overload

2019-05-22 Thread Pascal Riekenberg
Is someone working on these two issues? https://bugs.freepascal.org/view.php?id=35580 https://bugs.freepascal.org/view.php?id=35576 Lazarus is not usable with fpc trunk atm. Regards Pascal ___ fpc-devel maillist - fpc-devel@lists.freepascal.org