diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2021-02-16 11:08:30 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2021-02-16 11:08:59 +0100 |
| commit | d93fc2bfa6b3bd5c33912e2eaaa2d42dfd5f473f (patch) | |
| tree | 926722c82c5cda56e6641202a3e07336275243b8 /src/drivers/Posix/Fl_Posix_Printer_Driver.cxx | |
| parent | 06793c50fb99366a1008ea601c218b1cb6de0bf4 (diff) | |
Use <config.h> when appropriate.
Diffstat (limited to 'src/drivers/Posix/Fl_Posix_Printer_Driver.cxx')
| -rw-r--r-- | src/drivers/Posix/Fl_Posix_Printer_Driver.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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 <config.h> -#if defined(FL_CFG_PRN_PS) && !defined(FL_NO_PRINT_SUPPORT) +#if !defined(FL_NO_PRINT_SUPPORT) #include <FL/Fl_PostScript.H> #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) |
