>
>
>
> The types gint, guint should be defined in gtypes.h but the cause of the
> error message may not be use of type itself but something earlier.  What
> do the lines around 208 in gutils.h look like? And 121 in gstring.h and
> 114 in gmessages.h.  Is there something common between those bits of the
> files?
>
Not that I can spot:
gutils.h
G_INLINE_FUNC gint      g_bit_nth_lsf (gulong  mask,
                                       gint    nth_bit);
G_INLINE_FUNC gint      g_bit_nth_msf (gulong  mask,
                                       gint    nth_bit);
G_INLINE_FUNC guint     g_bit_storage (gulong  number);

gstring.h
#ifdef G_CAN_INLINE
static inline GString*
g_string_append_c_inline (GString *gstring,
                          gchar    c)
{

gmessages.h
#ifdef G_HAVE_ISO_VARARGS
#define g_error(...)    g_log (G_LOG_DOMAIN,         \
                               G_LOG_LEVEL_ERROR,    \
                               __VA_ARGS__)
#define g_message(...)  g_log (G_LOG_DOMAIN,         \
                               G_LOG_LEVEL_MESSAGE,  \
                               __VA_ARGS__)
#define g_critical(...) g_log (G_LOG_DOMAIN,         \
                               G_LOG_LEVEL_CRITICAL, \
                               __VA_ARGS__)
#define g_warning(...)  g_log (G_LOG_DOMAIN,         \
                               G_LOG_LEVEL_WARNING,  \
                               __VA_ARGS__)
#elif defined(G_HAVE_GNUC_VARARGS)r


> Another option is to run the compile command manually but change '-c' to
> '-E', remove '-o subversion/libsvn_auth_gnome_keyring/gnome_keyring.o',
> and redirect stdout to a file.  That gives us the preprocessed source
> with all the includes resolved (probably quite a big file).
>
It is quite big! Here you go:
https://pastebin.com/HhvEZFRq

Thanks
Ian



>
> --
> Philip
>
-- 
*IAN MORDEY* HEAD OF INFRASTRUCTURE

*wandisco.com* <http://www.wandisco.com/>

-- 


World Leader in Active Data Replication™
*Find out more wandisco.com <http://wandisco.com/>*

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY AND MAY BE 
PRIVILEGED

If this message was misdirected, WANdisco, Inc. and its subsidiaries, 
("WANdisco") does not waive any confidentiality or privilege. If you are 
not the intended recipient, please notify us immediately and destroy the 
message without disclosing its contents to anyone. Any distribution, use or 
copying of this email or the information it contains by other than an 
intended recipient is unauthorized. The views and opinions expressed in 
this email message are the author's own and may not reflect the views and 
opinions of WANdisco, unless the author is authorized by WANdisco to 
express such views or opinions on its behalf. All email sent to or from 
this address is subject to electronic storage and review by WANdisco. 
Although WANdisco operates anti-virus programs, it does not accept 
responsibility for any damage whatsoever caused by viruses being passed.

Reply via email to