X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fhtml.c;h=e8416756cb910f7c23a44081809b43c65dbcca92;hb=refs%2Fbuilds%2F20140228030505%2Fpspp;hp=822c6b5c9b8f9c6c6844a49760f405f26e4694d7;hpb=b51ab36f5a828654ed03e96c90a1241852f6d70c;p=pspp diff --git a/src/output/html.c b/src/output/html.c index 822c6b5c9b..e8416756cb 100644 --- a/src/output/html.c +++ b/src/output/html.c @@ -47,10 +47,10 @@ struct html_driver { struct output_driver driver; - +#ifdef HAVE_CAIRO struct xr_color fg; struct xr_color bg; - +#endif char *file_name; char *chart_file_name; @@ -104,10 +104,10 @@ html_create (const char *file_name, enum settings_output_devices device_type, file_name)); html->file = NULL; html->chart_cnt = 1; - +#ifdef HAVE_CAIRO parse_color (d, o, "background-color", "#FFFFFFFFFFFF", &html->bg); parse_color (d, o, "foreground-color", "#000000000000", &html->fg); - +#endif html->file = fn_open (html->file_name, "w"); if (html->file == NULL) {