summaryrefslogtreecommitdiffstats
path: root/config.tests/x11/fontconfig/fontconfig.cpp
blob: 85011628cd53c79db21afc2c312644e7ca08534f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <ft2build.h>
#include FT_FREETYPE_H
#include <fontconfig/fontconfig.h>

#ifndef FC_RGBA_UNKNOWN
#  error "This version of fontconfig is tool old, it is missing the FC_RGBA_UNKNOWN define"
#endif

#if ((FREETYPE_MAJOR*10000 + FREETYPE_MINOR*100 + FREETYPE_PATCH) < 20103)
#  error "This version of freetype is too old."
#endif

int main(int, char **)
{
    FT_Face face;
    face = 0;
    FcPattern *pattern;
    pattern = 0;
    return 0;
}