Re: [Github-comments] [geany/geany-plugins] 'Debugger' plugin port to GTK3 with GTK2 compatibility (#791)

2019-01-23 Thread Colomban Wendling
Apparently we've got a portability issue with the GTK version check. @andy5995 could you check out #815 and see if it helps? It should get rid of the *"unexpected operator/operand"* issues, and hopefully maybe more. -- You are receiving this because you are subscribed to this thread. Reply

[Github-comments] [geany/geany-plugins] Don't rely on a pkg-config output formatting detail (#815)

2019-01-23 Thread Colomban Wendling
Do not require pkg-config to emit spaces around elements in its `--print-requires` output. This should fix Geany GTK version check on OpenBSD 6.4. --- @andy5995 could you check this and see if it helps? Once configured, you should get something like that (obviously with GTK2 version of it if

Re: [Github-comments] [geany/geany-plugins] 'Debugger' plugin port to GTK3 with GTK2 compatibility (#791)

2019-01-23 Thread Andy Alt
> > `./configure[15275]: test: 3: unexpected operator/operand` > > Could you paste your generated `configure`? The error probably comes from > there and a `test` call that doesn't please your shell Sure... https://gist.github.com/andy5995/fb2b16eb9dab45d9ab8160cdd6f2a48e Also noticed it

Re: [Github-comments] [geany/geany-plugins] 'Debugger' plugin port to GTK3 with GTK2 compatibility (#791)

2019-01-23 Thread Colomban Wendling
> `./configure[15275]: test: 3: unexpected operator/operand` Could you paste your generated `configure`? The error probably comes from there and a `test` call that doesn't please your shell -- You are receiving this because you are subscribed to this thread. Reply to this email directly or

Re: [Github-comments] [geany/geany-plugins] 'Debugger' plugin port to GTK3 with GTK2 compatibility (#791)

2019-01-23 Thread Andy Alt
I installed the vte-0.28.2p19 package and that problem was solved. New problem is that the built fails with an undefined reference error: https://gist.github.com/andy5995/0b0fab05c70336bfff86ac4a3354d5a6#file-gistfile1-txt-L59

Re: [Github-comments] [geany/geany-plugins] 'Debugger' plugin port to GTK3 with GTK2 compatibility (#791)

2019-01-23 Thread Andy Alt
> Hi @andy5995, > The problem you mention is with utilslib, which is part of geany-plugins and > now used by the debugger plugin (it contains some compatibility functions). > Did you activate it at configure time? [config.log](https://github.com/geany/geany-plugins/files/2788940/config.log) I

Re: [Github-comments] [geany/geany-plugins] 'Debugger' plugin port to GTK3 with GTK2 compatibility (#791)

2019-01-23 Thread LarsGit223
I noticed the line ```...PTY_LIBS="-lutil"]``` in ```scope.m4```. Do we need this in ```debugger.m4``` also? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany-plugins] 'Debugger' plugin port to GTK3 with GTK2 compatibility (#791)

2019-01-23 Thread Benjamin Gaillard
Hi @andy5995, The problem you mention is with utilslib, which is part of geany-plugins and now used by the debugger plugin (it contains some compatibility functions). Did you activate it at configure time? It may need some other dependencies besides libvte. -- You are receiving this because

Re: [Github-comments] [geany/geany-plugins] 'Debugger' plugin port to GTK3 with GTK2 compatibility (#791)

2019-01-23 Thread Andy Alt
So far, mostly looks good on Buster (I set a breakpoint, watched a variable. One very minor thing.. when debugging a program that uses ncurses, I was able to view the screen in the Debug terminal as expected. The cursor keys worked within the terminal fine. But when I hit the green arrow