I'm running
Linux version 2.6.32-504.8.1.el6.x86_64 ([email protected]) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC)
and trying to install libX11-devel from source on a machine where I don't have root access (with the end goal of runnning CERN's ROOT).
However, I've been getting this error when processing lib/libXau
CC AuDispose.lo
In file included from $HOME/include/X11/Xfuncs.h:46:0,
from ./include/X11/Xauth.h:57,
from AuDispose.c:30:
/usr/include/string.h:548:5: error: unknown type name ‘__locale_t’
__locale_t __loc)
^
/usr/include/string.h:552:18: error: unknown type name ‘__locale_t’
size_t __n, __locale_t __loc)
^
I see other people usually have this error while building GCC, and the problem is resolved by downloading a newer version, but I've tried that and haven't had any luck. What is causing this error?
^
point to the__n
or the__locale_t
? – G-Man Aug 18 at 3:08