cairo: Remove support for printed headers.
[pspp] / tests / output / render-test.c
index 729db8503741927008d78484bc5028a32180463f..4863eaea91ec9cfcee870f1dddab43990dc585f0 100644 (file)
@@ -101,9 +101,9 @@ configure_drivers (int width, int length)
     exit (EXIT_FAILURE);
   output_driver_register (driver);
 
+#ifdef HAVE_CAIRO
   /* Render to render.pdf. */
   string_map_insert (&options, "output-file", "render.pdf");
-  string_map_insert (&options, "headers", "off");
   string_map_insert (&options, "top-margin", "0");
   string_map_insert (&options, "bottom-margin", "0");
   string_map_insert (&options, "left-margin", "0");
@@ -114,6 +114,7 @@ configure_drivers (int width, int length)
   if (driver == NULL)
     exit (EXIT_FAILURE);
   output_driver_register (driver);
+#endif
 
   string_map_destroy (&options);
 }