From 94fdced0a02d5bb344a007c225ccf35f7dd85c42 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Thu, 26 Apr 2001 10:17:12 +0000 Subject: [PATCH] adjusted for vaseks addition of USE_IMAGE and USE_XMP git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/mac/setup.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/include/wx/mac/setup.h b/include/wx/mac/setup.h index f4e14e5cb7..34a5055bd9 100644 --- a/include/wx/mac/setup.h +++ b/include/wx/mac/setup.h @@ -207,6 +207,22 @@ // and make the library thread safe #define wxUSE_ZLIB 1 // Use zlib for compression in streams and PNG code + +// ---------------------------------------------------------------------------- +// image format support +// ---------------------------------------------------------------------------- + +// wxImage supports many different image formats which can be configured at +// compile-time. BMP is always supported, others are optional and can be safely +// disabled if you don't plan to use images in such format sometimes saving +// substantial amount of code in the final library. +// +// Some formats require an extra library which is included in wxWin sources +// which is mentioned if it is the case. + +// Set to 1 for wxImage support (recommended). +#define wxUSE_IMAGE 1 + #define wxUSE_LIBPNG 1 // Use PNG bitmap code #define wxUSE_LIBJPEG 1 @@ -216,6 +232,15 @@ #define wxUSE_GIF 1 // Use GIF bitmap code +// Set to 1 for PNM format support +#define wxUSE_PNM 1 + +// Set to 1 for PCX format support +#define wxUSE_PCX 1 + +// Set to 1 for XPM format support +#define wxUSE_XPM 1 + #define wxUSE_SERIAL 0 // Use serialization (requires utils/serialize) #define wxUSE_DYNLIB_CLASS 0 -- 2.47.2