Re: [DNG] gcc error: "error: unknown type name,,, ‘GtkObject’"

2015-12-05 Thread aitor_czr
Hi Edward, I'm trying to scan the existing connections. As i can see in the TForm1.btnLoadExistingClick(Sender: TObject) method, you used 'TProcess' for running external applications. In C this must be replaced by the 'system' command. Now i'm looking at the TProcess options. For example:

Re: [DNG] APT pinning no longer works

2015-12-05 Thread Rainer Weikusat
Steve Litt writes: > On Wed, 2 Dec 2015 11:17:53 +0100 Jaromil wrote: [...] > Meanwhile, in my opinion, of course you should not incorporate this > change into Devuan. This change specifically gives the finger to a > certain subset of users, and that's no good at all. Here's an essay I > wrote

[DNG] devuan ascii: libdbus-1-3 problems

2015-12-05 Thread Dave Turner
I've been running devuan ascii on my laptop for some time. Mainly it works and upgrades without problems but libdbus-1-3 is stuck at v1.8.something-devuan and libdbus-1-3 and other stuff needs 1.9.13 or higher. It has been like that for some weeks - I assume that getting it all working is givin

Re: [DNG] devuan ascii: libdbus-1-3 problems

2015-12-05 Thread Mitt Green
‎Hi, Choose 1.10 versions from here: http://angband.pl/debian/pool/main/d/dbus/ You might even want to add this repository to sources.list (deb http://angband.pl/debian nosystemd-unstable main) Cheers, Mitt ___ Dng mailing list Dng@lists.dyne.org http

Re: [DNG] gcc error: "error: unknown type name,,, ‘GtkObject’"

2015-12-05 Thread Edward Bartolo
Hi Aitor, The best way for you is to use the backend's code for reference. What you want is already implemented there. TProcesss was used to trap the background cli commands output although there are instances where that output is discarded. What you need is this from the CLI backend's code (core

Re: [DNG] gcc error: "error: unknown type name,,, ‘GtkObject’"

2015-12-05 Thread Edward Bartolo
Hi Aitor, As you can see, popen runs the command opening a pipe to trap its textual output. shell_reader is a pointer to the actual output reader. fgets reads the shell_reader line by line until it returns false. It places lines in buffer using 1024 as a size limit in the quoted code snippet. The

Re: [DNG] gcc error: "error: unknown type name,,, ‘GtkObject’"

2015-12-05 Thread aitor_czr
Ok, thanks. I'm looking at the backend :) On 12/06/2015 08:45 AM, Edward Bartolo wrote: Hi Aitor, As you can see, popen runs the command opening a pipe to trap its textual output. shell_reader is a pointer to the actual output reader. fgets reads the shell_reader line by line until it returns f