diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2021-12-18 22:42:30 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2021-12-18 22:44:08 +0100 |
| commit | 5438954d8c6213f1b0cc9d23b70ffaae388e1d60 (patch) | |
| tree | 101eeda4bf98583d566eeb4b0870d2bde95dea69 /FL/Fl_Cairo.H | |
| parent | 797616841caaf3322c79c15b1d9c74d03b54ea12 (diff) | |
Generate FL/fl_config.h rather than FL/abi-version.h
... as discussed in fltk.coredev in thread "RFC: introduce public
config header <FL/fl_config.h>", see:
https://groups.google.com/g/fltkcoredev/c/xLCs1AIXMVo/m/MHZpQggzAQAJ
- Rename abi-version.h to fl_config.h, rename input files,
update dependencies, .gitignore, CMake, configure and Makefiles.
- Include Cairo options in FL/fl_config.h
- Rename FLTK_USE_CAIRO to FLTK_HAVE_CAIROEXT for consistency.
- Include <FL/fl_config.h> in config.h and wherever necessary,
fix include order (move FL/Fl.H to the top) and more.
- Move USE_X11 to fl_config.h and rename to FLTK_USE_X11
- Do not include <config.h> in Cairo demo program which is no
longer required in Cairo programs since FLTK 1.4.0
Diffstat (limited to 'FL/Fl_Cairo.H')
| -rw-r--r-- | FL/Fl_Cairo.H | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/FL/Fl_Cairo.H b/FL/Fl_Cairo.H index 3a32647a4..29496f0b9 100644 --- a/FL/Fl_Cairo.H +++ b/FL/Fl_Cairo.H @@ -1,7 +1,7 @@ // // Main header file for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2016 by Bill Spitzak and others. +// Copyright 1998-2021 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this @@ -20,6 +20,9 @@ #ifndef FL_CAIRO_H # define FL_CAIRO_H + +# include <FL/fl_config.h> // build configuration + # ifdef FLTK_HAVE_CAIRO // Cairo is currently supported for the following platforms: @@ -39,7 +42,9 @@ A private internal & unique corresponding object is created to permit cairo context state handling while keeping it opaque. For internal use only. - \note Only available when configure has the --enable-cairo option + \note Only available when configure has the --enable-cairo or + --enable-cairoext option or one or both of the CMake options + OPTION_CAIRO or OPTION_CAIROEXT is set (ON) */ class FL_EXPORT Fl_Cairo_State { public: |
