[Poppler-bugs] [Bug 107608] New: allow using gfile.h with glib
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Fri Aug 17 19:40:29 UTC 2018
https://bugs.freedesktop.org/show_bug.cgi?id=107608
Bug ID: 107608
Summary: allow using gfile.h with glib
Product: poppler
Version: unspecified
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component: general
Assignee: poppler-bugs at lists.freedesktop.org
Reporter: chpe at gnome.org
Created attachment 141172
--> https://bugs.freedesktop.org/attachment.cgi?id=141172&action=edit
proposed patch
(Moved to a separate bug as per bug 107599 comment 1.)
In bug 107599 I have a need to include goo/gfile.h in
poppler/glib/poppler-document.cc together with <glib.h> However doing so leads
to a compile error, since goo/gfile.h defines a "GDir" class which ufortunately
is also the name of a glib
type[https://gitlab.gnome.org/GNOME/glib/tree/master/glib/gdir.h]:
..../include/glib-2.0/glib/gdir.h:37:22: Fehler: conflicting declaration
»typedef struct _GDir GDir«
typedef struct _GDir GDir;
^~~~
..../poppler/poppler/goo/gfile.h:199:7: Anmerkung: previous declaration as
»class GDir«
class GDir {
^~~~
[From bug 107599 comment 1]:
> I'm really not happy when we get workarounds in our code because
> we collide with other repos type names, why should we be the ones
> adding workarounds and not the other codes?
I don't see a way to suppress glib's GDir. <glib.h> includes gdir.h and
glib-autocleanups.h. The gdir.h file's contents is guarded by #ifndef
__G_DIR_H__ which we could pre-define to skip its contents, but the <glib.h>
also includes <glib-autocleanups.h> which requires gdir.h and has itself no
such guard. Also these include guard names are not part of the glib API, they
are internal and we cannot rely on them.
OTOH poppler controls its own names, so if we work around this inside poppler,
we can rely on it.
The attached patch enables this by omitting the GDir (and GDirEntry) classes
from goo/gfile.h when GFILE_NO_GDIR is #define'd.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/poppler-bugs/attachments/20180817/57e3a7a1/attachment.html>
More information about the Poppler-bugs
mailing list