+Sat Mar 4 13:48:16 2006 Ben Pfaff <blp@gnu.org>
+
+ We didn't provide a way to define these macros, so obviously
+ there's little demand for them.
+
+ * html.c: Don't test for NO_HTML.
+
+ * postscript.c: Don't test for NO_POSTSCRIPT.
+
+ * output.c: Don't test for either of those.
+
Thu Mar 2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
* Moved files from src directory
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA. */
-/* This #if encloses the rest of the file. */
-#if !NO_HTML
-
#include <config.h>
#include "chart.h"
#include "htmlP.h"
html_finalise_chart
};
-
-#endif /* !NO_HTML */
-
outp_init (void)
{
extern struct outp_class ascii_class;
-#if !NO_POSTSCRIPT
extern struct outp_class postscript_class;
extern struct outp_class epsf_class;
-#endif
-#if !NO_HTML
extern struct outp_class html_class;
-#endif
char def[] = "default";
-#if !NO_HTML
add_class (&html_class);
-#endif
-#if !NO_POSTSCRIPT
add_class (&epsf_class);
add_class (&postscript_class);
-#endif
add_class (&ascii_class);
add_name (def, &def[strlen (def)], OUTP_S_INIT_FILE);
#include <config.h>
-/*this #if encloses the remainder of the file. */
-#if !NO_POSTSCRIPT
-
#include <ctype.h>
#include "chart.h"
#include "message.h"
ps_chart_finalise
};
-
-#endif /* NO_POSTSCRIPT */