LibMB 1.12
mbconfig.h
1#ifndef _MB_HAVE_MB_CONFIG
2#define _MB_HAVE_MB_CONFIG
3
4/*
5 *
6 *
7 *
8 */
9
10
11#if 1
12#define MB_HAVE_PNG
13#endif
14
15#if 1
16#define MB_HAVE_JPEG
17#endif
18
19#if 0
20#define MB_HAVE_XFT
21#endif
22
23#if 1
24#define MB_HAVE_PANGO
25#endif
26
27
28#define mb_supports_png() (1)
29
30#define mb_supports_jpeg() (1)
31
32#define mb_supports_xft() (0)
33
34#define mb_supports_pango() (1)
35
36#ifdef MB_HAVE_PNG
37#ifndef USE_PNG /* config.h redefines */
38#define USE_PNG
39#endif
40#endif
41
42#ifdef MB_HAVE_JPEG
43#ifndef USE_JPG
44#define USE_JPG
45#endif
46#endif
47
48#ifdef MB_HAVE_XFT
49#ifndef USE_XFT
50#define USE_XFT
51#endif
52#endif
53
54#ifdef MB_HAVE_PANGO
55#ifndef USE_PANGO
56#define USE_PANGO
57#endif
58#endif
59
60#endif
61