diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2020-06-27 09:56:00 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2020-06-27 09:56:00 +0200 |
| commit | 26e6c3f930a052a1e729d160b0e8e5b6042b5018 (patch) | |
| tree | a8d9ced3f2c8eac6414394a9b2930a1757a1ee50 /configure.ac | |
| parent | 93f19c3a2457f1c87f3c0781481f0bcc1602a514 (diff) | |
Add classes Fl_SVG_File_Surface and Fl_EPS_File_Surface to draw to SVG and EPS.
Test programs device and pixmap_browser use these new classes.
Class Fl_SVG_File_Surface can be optionally made non functional using the
--disable-svg configure option or turning off OPTION_USE_SVG in CMake.
Class Fl_EPS_File_Surface can be optionally made non functional using the
--disable-print configure option or turning off OPTION_PRINT_SUPPORT in CMake.
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index fda55a21d..20fcbe05a 100644 --- a/configure.ac +++ b/configure.ac @@ -789,10 +789,10 @@ AC_SUBST(PNGINC) AC_SUBST(ZLIB) AC_SUBST(ZLIBINC) -# Control the usage of the nanosvg lib -AC_ARG_ENABLE(nanosvg, [ --enable-nanosvg use nanosvg to support SVG images [[default=yes]]]) -if test x$enable_nanosvg != xno; then - AC_DEFINE(FLTK_USE_NANOSVG) +# Control the usage of the nanosvg lib and SVG output +AC_ARG_ENABLE(svg, [ --enable-svg read/write SVG files [[default=yes]]]) +if test x$enable_svg != xno; then + AC_DEFINE(FLTK_USE_SVG) fi dnl Restore original LIBS settings... |
