[DNG] alternative to raspbian without systemd

2015-11-28 Thread info at smallinnovations.nl
On 28-11-15 07:23, dng-requ...@lists.dyne.org wrote: Date: Fri, 27 Nov 2015 12:29:12 -0700 From: Gregory Nowak To: dng@lists.dyne.org Subject: Re: [DNG] alternative to raspbian without systemd Message-ID: <20151127192912.ga19...@gregn.net> Content-Type: text/plain; charset=us-ascii On Fri, No

Re: [DNG] lightweight graphics toolkits (was Experiencing with GtkBuilder)

2015-11-28 Thread Didier Kryn
Le 28/11/2015 07:23, Mitt Green a écrit : It's not outdated since it's actively maintained. I agree that it isn't eye-candy at all. But I would say it's easier to program than ncurses. It has a loot of widgets. The advantage of ncurses is obviously that it can run without X, therefore on very sma

Re: [DNG] lightweight graphics toolkits (was Experiencing with GtkBuilder)

2015-11-28 Thread Jonathan Wilkes
> Gtk and Qt are meant for applications who target the general public, which > have to be shiny and stylish to be adopted. So an application to connect over wifi isn't an application that targets the  general public? Also, what are some examples of actively maintained GUI toolkits that don't  tar

Re: [DNG] Experiencing with GtkBuilder

2015-11-28 Thread arnt
Ilog views is such a toolkit. You may never have heard of it, but you can pay dearly for it if you want. I can't think of any others. When I evaluated xforms, I thought it was optimised for the maintainers' convenience, and nothing else. Arnt ___

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

2015-11-28 Thread Edward Bartolo
Hi All, I am trying to practice creating a GUI with gtk but I am failing to compile my little test application. #include void on_window_destroy (GtkObject *object, gpointer user_data) { gtk_main_quit (); } int main (int argc, char *argv[]) {

Re: [DNG] lightweight graphics toolkits (was Experiencing with GtkBuilder)

2015-11-28 Thread Godefridus Daalmans
If your programs depend on CDE, you could try to compile them against lesstif2, that's an LGPL implementation of Motif, on top of just the X libraries. I don't know if it's binary-compatible or if it's actively maintained. Frits And why actually there is no package for it in repository? While

Re: [DNG] lightweight graphics toolkits (was Experiencing with GtkBuilder)

2015-11-28 Thread Didier Kryn
Le 28/11/2015 16:29, Jonathan Wilkes a écrit : > Gtk and Qt are meant for applications who target the general public, which have to be shiny and stylish to be adopted. So an application to connect over wifi isn't an application that targets the general public? Take it easy Jonathan. It's

Re: [DNG] lightweight graphics toolkits (was Experiencing with GtkBuilder)

2015-11-28 Thread Roger Leigh
On 28/11/2015 18:46, Godefridus Daalmans wrote: If your programs depend on CDE, you could try to compile them against lesstif2, that's an LGPL implementation of Motif, on top of just the X libraries. I don't know if it's binary-compatible or if it's actively maintained. Not sure of its current

[DNG] #devuan botbot.me needs attention

2015-11-28 Thread Go Linux
The #devuan logging that was set up on https://botbot.me/freenode/devuan/ is currently not updating. Hoping that someone on this list was responsible for setting it up and can get it started again. Thanks! golinux ___ Dng mailing list Dng@lists.dyne.

[DNG] New Devuan/Debian installation advice request.

2015-11-28 Thread Scienceof Atomics
I have a 13-DVD set of Debian Jessie 8.2 that has been used to create a working on-disk repository as determined by customizing a standard Debian installation. I'd like to start again with a minimum Devuan installation, then use my on-disk repo to create my own Devuan/Debian system with a

[DNG] Problems with devuan alpha2 installer

2015-11-28 Thread Joel Roth
Hi all, After recently installing the i386 flavor of devuan, I tried again with the amd64 version. This time I encountered problems. First, I managed to clobber the partition table. At one point the installer asked me if this was a GPT partition table. I wasn't sure and said yes. Then at some p

Re: [DNG] Problems with devuan alpha2 installer

2015-11-28 Thread Daniel Reurich
Hi Joel On 29/11/15 13:16, Joel Roth wrote: > Hi all, > > After recently installing the i386 flavor of devuan, > I tried again with the amd64 version. > > This time I encountered problems. > > First, I managed to clobber the partition table. > At one point the installer asked me if this was >

Re: [DNG] Problems with devuan alpha2 installer

2015-11-28 Thread Joel Roth
On Sun, Nov 29, 2015 at 02:59:12PM +1300, Daniel Reurich wrote: > Hi Joel > On 29/11/15 13:16, Joel Roth wrote: > > Hi all, > > > > After recently installing the i386 flavor of devuan, > > I tried again with the amd64 version. > > > > This time I encountered problems. > > > > First, I managed

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

2015-11-28 Thread aitor_czr
Hi Edward, Replace by GtkObject* object by GtkWidget* widget in the routine 'on_window_destroy'. On the other hand, use -export-dynamic. Otherwise, you will get warnings running the executable: (prueba:4108): Gtk-WARNING **: Could not find signal handler 'on_togglebutton1_clicked'. Did you c