Re: [Github-comments] [geany/geany-plugins] Build error with 1.37 release (#1023)

2021-01-06 Thread Frank Lanitz
Closed #1023 via #1053.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1023#event-4175002687

Re: [Github-comments] [geany/geany-plugins] Build error with 1.37 release (#1023)

2020-11-08 Thread Colomban Wendling
@rezso Could you give some information on your setup?  System version, maybe 
libxml2 and Geany-Plugins version?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1023#issuecomment-723535722

Re: [Github-comments] [geany/geany-plugins] Build error with 1.37 release (#1023)

2020-11-07 Thread Matthew Brush
Reopened #1023.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1023#event-3970334423

Re: [Github-comments] [geany/geany-plugins] Build error with 1.37 release (#1023)

2020-11-07 Thread Matthew Brush
Then it is a bug.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1023#issuecomment-723514866

Re: [Github-comments] [geany/geany-plugins] Build error with 1.37 release (#1023)

2020-11-07 Thread rezso
Closed #1023.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1023#event-3970265416

Re: [Github-comments] [geany/geany-plugins] Build error with 1.37 release (#1023)

2020-11-07 Thread rezso
I tried it, and works.
Thank you.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1023#issuecomment-723503381

Re: [Github-comments] [geany/geany-plugins] Build error with 1.37 release (#1023)

2020-11-07 Thread Matthew Brush
Could be a clash with another file including `stdbool.h` or also defining own 
`bool` type.

IMO, it should either include `stdbool.h` and use the standard `bool` (alias of 
`_Bool`) or else use `gboolean` that is already available via the `glib.h` 
include.

@rezso if you want to test, try removing the offending line (55) and putting 
`#include ` on line 32.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1023#issuecomment-723483198

[Github-comments] [geany/geany-plugins] Build error with 1.37 release (#1023)

2020-11-07 Thread rezso
The build fails in prettyprinter plugin:

In file included from /usr/include/unicode/umachine.h:52,
 from /usr/include/unicode/utypes.h:38,
 from /usr/include/unicode/ucnv_err.h:88,
 from /usr/include/unicode/ucnv.h:52,
 from /usr/include/libxml2/libxml/encoding.h:31,
 from /usr/include/libxml2/libxml/parser.h:810,
 from PluginEntry.h:32,
 from PluginEntry.c:28:
PrettyPrinter.h:55:22: error: two or more data types in declaration specifiers
   55 | typedef unsigned int bool;


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1023