From d93fc2bfa6b3bd5c33912e2eaaa2d42dfd5f473f Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Tue, 16 Feb 2021 11:08:30 +0100 Subject: Use when appropriate. --- src/drivers/Posix/Fl_Posix_Printer_Driver.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/drivers/Posix/Fl_Posix_Printer_Driver.cxx') diff --git a/src/drivers/Posix/Fl_Posix_Printer_Driver.cxx b/src/drivers/Posix/Fl_Posix_Printer_Driver.cxx index 5fcb4645a..904c6d334 100644 --- a/src/drivers/Posix/Fl_Posix_Printer_Driver.cxx +++ b/src/drivers/Posix/Fl_Posix_Printer_Driver.cxx @@ -14,9 +14,9 @@ // https://www.fltk.org/bugs.php // -#include "../../config_lib.h" +#include -#if defined(FL_CFG_PRN_PS) && !defined(FL_NO_PRINT_SUPPORT) +#if !defined(FL_NO_PRINT_SUPPORT) #include #include "../PostScript/Fl_PostScript_Graphics_Driver.H" @@ -331,4 +331,4 @@ int Fl_Posix_Printer_Driver::begin_job(int pages, int *firstpage, int *lastpage, return ps->start_postscript(pages, format, layout); // start printing } -#endif // defined(FL_CFG_PRN_PS) && !defined(FL_NO_PRINT_SUPPORT) +#endif // !defined(FL_NO_PRINT_SUPPORT) -- cgit v1.2.3