summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/libmng/libmng.cpp
blob: cafb4780cb6ef002638ae912d87323003df70452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <libmng.h>

int main(int, char **)
{
    mng_handle hMNG;
    mng_cleanup(&hMNG);

#if MNG_VERSION_MAJOR < 1 || (MNG_VERSION_MAJOR == 1 && MNG_VERSION_MINOR == 0 && MNG_VERSION_RELEASE < 9)
#error System libmng version is less than 1.0.9; using built-in version instead.
#endif

    return 0;
}