Re: [DNG] XFCE terminal alternatives?

2015-12-07 Thread tilt!
Hi dev, Am 07.12.2015 um 16:39 schrieb dev: > [...] I like the tabs and the drop-down feature of XFCE Terminal as > well as the light footprint. I've tried others[1] such as Terra > Terminal, Terminator and Yakuake but can't seem to find one with all > the right features. Any suggestions? ...inst

Re: [DNG] Debianising my uploaded version of netman.

2015-12-07 Thread Edward Bartolo
Forwarded to dng. On 07/12/2015, Edward Bartolo wrote: > Hi Aitor, > > Thanks for granting me permission. I will now start editing some files > under netman/debian so that dpkg-buildpackage works. > > I am getting this error: > dpkg-source: error: can't build with source format '3.0 (quilt)': no

Re: [DNG] XFCE terminal alternatives?

2015-12-07 Thread Florian Zieboll
On Mon, 7 Dec 2015 09:39:18 -0600 dev wrote: > I like the tabs and the drop-down feature of XFCE Terminal as well as > the light footprint. I've tried others[1] such as Terra Terminal, > Terminator and Yakuake but can't seem to find one with all the right > features. Any suggestions? ...inst

Re: [DNG] Pointer error in the backend of Netman

2015-12-07 Thread Edward Bartolo
Hi Rainer, Edited Makefile as you instructed me. Now, using "make -C ." in netman/ directory creates two executables: netman (GUI frontend) and backend (CLI backend). Please ignore the "Sender" parameter not used warnings. It is normal not to use Sender although there are instances where it is us

Re: [DNG] Pointer error in the backend of Netman

2015-12-07 Thread Rainer Weikusat
Edward Bartolo writes: > Hi Rainer, > > This is Makefile from netman: > > --- > all: backend netman > > backend: > make -C backend_src > cp backend_src/bin/backend . > > netman: netman.lpr > lazbuild -B netman.lpr | awk '/./{p

Re: [DNG] XFCE terminal alternatives?

2015-12-07 Thread shraptor
You could have a look at AltYo https://github.com/linvinus/AltYo I always compiled from git but there is evidence of debian packaging in repo so should be easy to install on devuan? best regards Scooby On 2015-12-07 17:26, Steve Litt wrote: On Mon, 7 Dec 2015 09:39:18 -0600 dev wrote: I

Re: [DNG] Pointer error in the backend of Netman

2015-12-07 Thread Edward Bartolo
Hi Rainer, This is Makefile from netman: --- all: backend netman backend: make -C backend_src cp backend_src/bin/backend . netman: netman.lpr lazbuild -B netman.lpr | awk '/./{print $$0}' clean: make -C backend_src

Re: [DNG] Pointer error in the backend of Netman

2015-12-07 Thread Rainer Weikusat
Edward Bartolo writes: > QUOTE: > > "NB: This also fixes the silly autoWirelessScanPlus_RN omission (by > including all object files). But this is positively the last time I've > either > > - created backend_src/obj by hand > - created backend_src/bin by hand > - added auto

Re: [DNG] Pointer error in the backend of Netman

2015-12-07 Thread Edward Bartolo
Hi, To compile manually the backend, cd to: netman/backend_src/src gcc -I../include -lm -Wall automated_scanner.c core_functions.c essid_encoder.c file_functions.c backend.c -o backend Edward On 07/12/2015, Edward Bartolo wrote: > Hi Reiner, > > QUOTE: > > "NB: This also fixes the silly autoWi

Re: [DNG] XFCE terminal alternatives?

2015-12-07 Thread Steve Litt
On Mon, 7 Dec 2015 09:39:18 -0600 dev wrote: > I've been using Devuan on my desktop for a number of months now. Very > nice! Only thing is about once a week the XFCE Terminal (in drop down > mode) will sort of crash when closing GTK applications. [snip] > I like the tabs and the drop-down fea

Re: [DNG] Pointer error in the backend of Netman

2015-12-07 Thread Edward Bartolo
Hi Reiner, QUOTE: "NB: This also fixes the silly autoWirelessScanPlus_RN omission (by including all object files). But this is positively the last time I've either - created backend_src/obj by hand - created backend_src/bin by hand - added automated_scanner.o by hand

[DNG] XFCE terminal alternatives?

2015-12-07 Thread dev
I've been using Devuan on my desktop for a number of months now. Very nice! Only thing is about once a week the XFCE Terminal (in drop down mode) will sort of crash when closing GTK applications. Sometimes closing Geeqie will crash it, other times Firefox. Not sure how that's related. The ap

Re: [DNG] Pointer error in the backend of Netman

2015-12-07 Thread Rainer Weikusat
aitor_czr writes: > Now i get the following error trying to compile the backend: > > " ... automated_scanner.c:291: undefined reference to `pow' ... " > > The 'pow' function is part of the 'math' library. Therefore, the > invokation of the compiler should be as follows: > > $ gcc -g -lm [...] > >

Re: [DNG] Pointer error in the backend of Netman

2015-12-07 Thread aitor_czr
Hi Edward, Now i get the following error trying to compile the backend: " ... automated_scanner.c:291: undefined reference to `pow' ... " The 'pow' function is part of the 'math' library. Therefore, the invokation of the compiler should be as follows: $ gcc -g -lm [...] in order to link wit