[MSEide-MSEgui-talk] First mysql windows client to linux mysql server

2016-09-02 Thread Patrick Goupell
Hello All, The subject line says it. What do I need to install on the windows client computer to connect to a linux mysql server? I see various packages on the mysql website (http://dev.mysql.com/downloads/) for download. Would the mysql connector be the correct package to install? Do I

[MSEide-MSEgui-talk] Cross-compiling FreeBSD 64 --> FreeBSD 32

2016-09-02 Thread Fred van Stappen
Hello Martin. While cross-compiling on FreeBSD 64 --> 32 , there are error messages. Some constants are not defined. Finally, this solves all: in mselibc.pas and mseockeintf.pas --> change all {$idef linux} with ---> {$idef unix} But I am not sure it is the perfect solution. Thanks. Fre;D

Re: [MSEide-MSEgui-talk] First mysql windows client to linux mysql server

2016-09-02 Thread Martin Schreiber
On Thursday 01 September 2016 16:35:02 Patrick Goupell wrote: > Hello All, > > The subject line says it. > > What do I need to install on the windows client computer to connect to a > linux mysql server? > AFAIK libmysql.dll. > I see various packages on the mysql website >

Re: [MSEide-MSEgui-talk] First mysql windows client to linux mysql server

2016-09-02 Thread Patrick Goupell
On 09/02/2016 11:36 AM, Martin Schreiber wrote: > > AFAIK libmysql.dll. > Thanks, All connected and working. -- ___ mseide-msegui-talk mailing list

Re: [MSEide-MSEgui-talk] Cross-compiling FreeBSD 64 --> FreeBSD 32

2016-09-02 Thread Martin Schreiber
On Friday 02 September 2016 18:08:31 Fred van Stappen wrote: > Hello Martin. > > While cross-compiling on FreeBSD 64 --> 32 , there are error messages. > Some constants are not defined. > > Finally, this solves all: > in mselibc.pas and mseockeintf.pas --> change all {$idef linux} with ---> >

Re: [MSEide-MSEgui-talk] Feature Request: Project Groups

2016-09-02 Thread Graeme Geldenhuys
On 2016-09-02 08:36, Martin Schreiber wrote: > DIREXT has been defined, if DIREXT has not been defined then > remove "${MAC_IFDEF(DIREXT)}" from expanded string. Ah, now I understand. That could be useful. > Could you manage to set the appropriate unit output directories? Yes. Seeing as

[MSEide-MSEgui-talk] MSErun: feature request: parallel processes

2016-09-02 Thread Graeme Geldenhuys
Hi Martin, How hard would it be to allow MSErun to do 2-4 compilations in parallel? The multi-thread/process number could be user configurable. For example, I have an 8 core system, and MSErun is compiling 30+ independent projects all in sequence. If it could compile say 4 projects in parallel,

Re: [MSEide-MSEgui-talk] Feature Request: Project Groups

2016-09-02 Thread Graeme Geldenhuys
On 2016-09-02 10:07, Martin Schreiber wrote: >> > One more question, to try and clarify why "-FUunits" didn't work in the >> > first place. ...snip... > > Yes. OK, with the correct marco in the "Current Directory" of the top-level node, I can change my compiler flags to use -FUunit and everything

Re: [MSEide-MSEgui-talk] Feature Request: Project Groups

2016-09-02 Thread Martin Schreiber
On Friday 02 September 2016 10:21:42 Graeme Geldenhuys wrote: > > One more question, to try and clarify why "-FUunits" didn't work in the > first place. Not that I need to, I'm just curious. In the Edit Group > Item dialog there is a "Compile Directory" entry. Does that entry mean > MSErun makes

[MSEide-MSEgui-talk] MSEide feature request: GoTo Line improvement

2016-09-02 Thread Graeme Geldenhuys
Hi Martin, At the moment if I use GoTo Line, the line ends up being the last line in the editor window. Could that be changed so the target line appears in the middle of the editor window (if there is sufficient lines trailing the target line). Having the target line in the middle of the editor

Re: [MSEide-MSEgui-talk] MSErun: feature request: parallel processes

2016-09-02 Thread Martin Schreiber
On Friday 02 September 2016 10:33:41 Graeme Geldenhuys wrote: > Hi Martin, > > How hard would it be to allow MSErun to do 2-4 compilations in parallel? > The multi-thread/process number could be user configurable. > > For example, I have an 8 core system, and MSErun is compiling 30+ > independent

Re: [MSEide-MSEgui-talk] MSErun: feature request: remember failed output

2016-09-02 Thread Graeme Geldenhuys
On 2016-09-02 10:15, Martin Schreiber wrote: > Added to wishlist. thank you. > It is possible to stop on first compile error by > activating 'Options'-'Stop on compile error'. Yes I saw that, but it's not quite the same as what I want. I want all projects to compile. Afterwards I want to

Re: [MSEide-MSEgui-talk] MSErun: feature request: parallel processes

2016-09-02 Thread Graeme Geldenhuys
On 2016-09-02 10:15, Martin Schreiber wrote: >> > > Added to wishlist. Not easy if done right. ;-) > It could be a good testcase for the MSEgui process component. Thanks again. >From your answer I'm assuming MSEgui has it's own TProcess class? When using the FPC TProcess, it isn't hard to

Re: [MSEide-MSEgui-talk] MSErun: feature request: remember failed output

2016-09-02 Thread Martin Schreiber
On Friday 02 September 2016 10:37:14 Graeme Geldenhuys wrote: > Hi, > > Would it be possible to extend MSErun to remember failed compilation > output. At the moment it fails compiling project 11, and keeps going wit > the rest. Then at the end I need to compile all the red marked projects > again

Re: [MSEide-MSEgui-talk] Feature Request: Project Groups

2016-09-02 Thread Martin Schreiber
On Friday 02 September 2016 08:36:39 Graeme Geldenhuys wrote: > On 2016-09-01 15:15, Martin Schreiber wrote: > > The startscript for the example on Linux X86 is > > Thanks. So what is DIREXT then? It is not mentioned in the MSErun > readme, and neither is it defined in your startup script. Yet it

Re: [MSEide-MSEgui-talk] MSErun: feature request: parallel processes

2016-09-02 Thread Martin Schreiber
On Friday 02 September 2016 11:25:15 Graeme Geldenhuys wrote: > On 2016-09-02 10:15, Martin Schreiber wrote: > > Added to wishlist. Not easy if done right. ;-) > > It could be a good testcase for the MSEgui process component. > > Thanks again. > > >From your answer I'm assuming MSEgui has it's own