Comment #10 on issue 26809 by craig.schlenter: Compilation error while
trying to compile from source - dtoa.cc
http://code.google.com/p/chromium/issues/detail?id=26809
Marek: What's the situation with the other libraries btw.? Are those also
too old
compared to the build prerequisites? I'm trying to get an idea if it's just
a couple
of compiler warnings and pango or if it is a much bigger set of problems.
If the other dependencies look vaguely ok and you have stripped out -Werror
and
comment out the pango height call just as an experiment, do you run into
other
problems?
pango_layout_set_height doesn't look very complicated btw. ...
void
pango_layout_set_height (PangoLayout *layout,
int height)
{
g_return_if_fail (layout != NULL);
if (height != layout->height)
{
layout->height = height;
/* Do not invalidate if the number of lines requested is
* larger than the total number of lines in layout.
* Bug 549003
*/
if (layout->ellipsize != PANGO_ELLIPSIZE_NONE &&
!(layout->lines && layout->is_ellipsized == FALSE &&
layout->line_count <=
-height))
pango_layout_clear_lines (layout);
}
}
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs