#ifndef _MB_HAVE_MB_CONFIG #define _MB_HAVE_MB_CONFIG /* * * * */ #if @SUPPORTS_PNG@ #define MB_HAVE_PNG #endif #if @SUPPORTS_JPEG@ #define MB_HAVE_JPEG #endif #if @SUPPORTS_XFT@ #define MB_HAVE_XFT #endif #if @SUPPORTS_PANGO@ #define MB_HAVE_PANGO #endif #define mb_supports_png() (@SUPPORTS_PNG@) #define mb_supports_jpeg() (@SUPPORTS_JPEG@) #define mb_supports_xft() (@SUPPORTS_XFT@) #define mb_supports_pango() (@SUPPORTS_PANGO@) #ifdef MB_HAVE_PNG #ifndef USE_PNG /* config.h redefines */ #define USE_PNG #endif #endif #ifdef MB_HAVE_JPEG #ifndef USE_JPG #define USE_JPG #endif #endif #ifdef MB_HAVE_XFT #ifndef USE_XFT #define USE_XFT #endif #endif #ifdef MB_HAVE_PANGO #ifndef USE_PANGO #define USE_PANGO #endif #endif #endif