Re: [Lazarus] Gtk2

2018-02-23 Thread Adriaan van Os via Lazarus
Schindler Karl-Michael via Lazarus wrote: How about fink? If sources and prerequisites are available, I could have a go at a package description. I did so successfully for lazarus-gkt2. Not quite sure what you mean. There are some fink gtk packages, they seem to be based on gtk2.18 rather

Re: [Lazarus] Garbage writing to console

2018-02-23 Thread Ondrej Pokorny via Lazarus
On 23.02.2018 8:46, Mattias Gaertner via Lazarus wrote: But this is a Lazarus issue. Why? Ondrej -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] Garbage writing to console

2018-02-23 Thread Mattias Gaertner via Lazarus
On Fri, 23 Feb 2018 08:56:55 +0100 Ondrej Pokorny via Lazarus wrote: > On 23.02.2018 8:46, Mattias Gaertner via Lazarus wrote: > > But this is a Lazarus issue. > > Why? Because the wiki page is unclear. writeln('áéí'); // works only with source codepage UTF-8

Re: [Lazarus] Garbage writing to console

2018-02-23 Thread Ondrej Pokorny via Lazarus
On 23.02.2018 9:23, Mattias Gaertner via Lazarus wrote: On Fri, 23 Feb 2018 08:56:55 +0100 Ondrej Pokorny via Lazarus wrote: On 23.02.2018 8:46, Mattias Gaertner via Lazarus wrote: But this is a Lazarus issue. Why? Because the wiki page is unclear.

Re: [Lazarus] Garbage writing to console

2018-02-23 Thread R0b0t1 via Lazarus
On Fri, Feb 23, 2018 at 2:29 AM, Ondrej Pokorny via Lazarus wrote: > OK, you mean it's a wiki page issue. I just didn't understand how we could > solve it in Lazarus :) > I am interested in this thread because I was under the impression that UTF-8 support in

Re: [Lazarus] Garbage writing to console

2018-02-23 Thread Michael Van Canneyt via Lazarus
On Fri, 23 Feb 2018, R0b0t1 via Lazarus wrote: On Fri, Feb 23, 2018 at 2:29 AM, Ondrej Pokorny via Lazarus wrote: OK, you mean it's a wiki page issue. I just didn't understand how we could solve it in Lazarus :) I am interested in this thread because I was

Re: [Lazarus] Gtk2

2018-02-23 Thread Adriaan van Os via Lazarus
Anthony Walter via Lazarus wrote: Maybe homebrew as well. I've heard from most people that brew is better than ports. Thanks for the hint. I looked at but they don't even have a list of packages without having to install their software, which requires OS X 10.10. Not for

Re: [Lazarus] Garbage writing to console

2018-02-23 Thread R0b0t1 via Lazarus
On Fri, Feb 23, 2018 at 3:25 AM, Michael Van Canneyt via Lazarus wrote: > > > On Fri, 23 Feb 2018, R0b0t1 via Lazarus wrote: > >> On Fri, Feb 23, 2018 at 2:29 AM, Ondrej Pokorny via Lazarus >> wrote: >>> >>> OK, you mean it's a wiki

Re: [Lazarus] Garbage writing to console

2018-02-23 Thread Luca Olivetti via Lazarus
El 23/02/18 a les 09:23, Mattias Gaertner via Lazarus ha escrit: On Fri, 23 Feb 2018 08:56:55 +0100 Ondrej Pokorny via Lazarus wrote: On 23.02.2018 8:46, Mattias Gaertner via Lazarus wrote: But this is a Lazarus issue. Why? Because the wiki page is unclear.

Re: [Lazarus] Garbage writing to console

2018-02-23 Thread Mattias Gaertner via Lazarus
On Fri, 23 Feb 2018 10:56:11 +0100 Luca Olivetti via Lazarus wrote: > El 23/02/18 a les 09:23, Mattias Gaertner via Lazarus ha escrit: > > On Fri, 23 Feb 2018 08:56:55 +0100 > > Ondrej Pokorny via Lazarus wrote: > > > >> On

Re: [Lazarus] Gtk2

2018-02-23 Thread Schindler Karl-Michael via Lazarus
Am 23.02.2018 um 10:56 schrieb lazarus-requ...@lists.lazarus-ide.org: > > Message: 6 > Date: Fri, 23 Feb 2018 10:50:50 +0100 > From: Adriaan van Os > To: Lazarus mailing list > Subject: Re: [Lazarus] Gtk2 > Message-ID:

Re: [Lazarus] Garbage writing to console

2018-02-23 Thread Ondrej Pokorny via Lazarus
On 23.02.2018 11:18, Mattias Gaertner via Lazarus wrote: Write and Writeln are pure compiler magic. Apparently if the string is CP_ACP, it is passed unchanged to Output, ignoring the DefaultSystemCodepage variable. Otherwise it converts the string to the console codepage. This allows to write

Re: [Lazarus] Garbage writing to console

2018-02-23 Thread Mattias Gaertner via Lazarus
On Fri, 23 Feb 2018 11:18:55 +0100 Mattias Gaertner via Lazarus wrote: >[...] > Write and Writeln are pure compiler magic. > Apparently if the string is CP_ACP, it is passed unchanged to Output, > ignoring the DefaultSystemCodepage variable. I correct myself. ;)