diff options
| author | Manolo Gouy <Manolo> | 2016-12-01 17:31:29 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-12-01 17:31:29 +0000 |
| commit | 21781c3fe922592a34371abdc09dcd13d75b2340 (patch) | |
| tree | 5e77379785c7ef741cdf77578519c5d5515a7047 /src/Fl_Printer.cxx | |
| parent | 7f3f3f3e08f5e1692449c2f82b9e3802f96bb68b (diff) | |
Add --enable-print option to configure to allow building without print support on X11 platforms.
Also, the NO_PRINT_SUPPORT preprocessor variable is renamed FL_NO_PRINT_SUPPORT.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12131 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Printer.cxx')
| -rw-r--r-- | src/Fl_Printer.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Fl_Printer.cxx b/src/Fl_Printer.cxx index be80abc6d..c0982687c 100644 --- a/src/Fl_Printer.cxx +++ b/src/Fl_Printer.cxx @@ -21,11 +21,11 @@ #include <config.h> #ifdef FL_PORTING -# pragma message "FL_PORTING: implement print support for your platform, or define NO_PRINT_SUPPORT" -#define NO_PRINT_SUPPORT 1 +# pragma message "FL_PORTING: implement print support for your platform, or define FL_NO_PRINT_SUPPORT" +#define FL_NO_PRINT_SUPPORT 1 #endif -#if defined(NO_PRINT_SUPPORT) +#if defined(FL_NO_PRINT_SUPPORT) #include <FL/Fl_PostScript.H> Fl_Printer::Fl_Printer(void) { @@ -239,7 +239,7 @@ Fl_Printer::~Fl_Printer(void) delete printer; } -#endif // defined(NO_PRINT_SUPPORT) +#endif // defined(FL_NO_PRINT_SUPPORT) // // End of "$Id$". |
