Re: Problem building vte-0.11.6 in garnome-0.24.2



Eric Moncrieff <eric+garnome styx org> writes:
> vtegl.c: In function `_vte_gl_clear':
> vtegl.c:317: parse error before `long'
> vtegl.c:321: `pixmapw' undeclared (first use in this function)

Looking in the source, you find (starting at line 315):
| {
|	struct _vte_gl_data *data;
|	data = (struct _vte_gl_data*) draw->impl_data;
|	long xstop, ystop, i, j;
|...
IMHO this should read:
| {
|	struct _vte_gl_data *data = (struct _vte_gl_data*) draw->impl_data;
|	long xstop, ystop, i, j;
|...

HTH,

 Heike



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]