Pretty simple, I tried to compile this on Arch Linux and couldn't because of recent changes to ICU. I fixed the issue:
nip2 depends on the ICU library via libxml2. ICU released version 68 on 2020-10-28, and switched to using the C99 bool type in its public headers. nip2 was using bool as the name for a gboolean in the ParseConst struct. This commit renames this to boolean.
Pretty simple, I tried to compile this on Arch Linux and couldn't because of recent changes to ICU. I fixed the issue:
nip2 depends on the ICU library via libxml2. ICU released version 68 on 2020-10-28, and switched to using the C99 bool type in its public headers. nip2 was using
bool
as the name for a gboolean in the ParseConst struct. This commit renames this toboolean
.