Changed the default value od SCOMPRESS to true.
[pspp-builds.git] / src / output / output.c
index 3f79a6a02afb0bf7094b5c258aceee9de380b774..8af1a7b8043033209ba867986c794373d0ed8e40 100644 (file)
@@ -220,23 +220,15 @@ void
 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);
@@ -1258,7 +1250,7 @@ exit:
 struct outp_driver *
 outp_drivers (struct outp_driver *d)
 {
-#if GLOBAL_DEBUGGING
+#if DEBUGGING
   struct outp_driver *orig_d = d;
 #endif