forked from KolibriOS/kolibrios
754f9336f0
git-svn-id: svn://kolibrios.org@4349 a494cfbc-eb01-0410-851d-a64ba20cac60
25 lines
496 B
C
25 lines
496 B
C
#define CAIRO_VERSION_H 1
|
|
|
|
#include <cairo.h>
|
|
|
|
/* get the "real" version info instead of dummy cairo-version.h */
|
|
#undef CAIRO_VERSION_H
|
|
#include "../cairo-version.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
printf ("Check linking to the just built cairo library\n");
|
|
if (cairo_version () == CAIRO_VERSION) {
|
|
return 0;
|
|
} else {
|
|
fprintf (stderr,
|
|
"Error: linked to cairo version %s instead of %s\n",
|
|
cairo_version_string (),
|
|
CAIRO_VERSION_STRING);
|
|
return 1;
|
|
}
|
|
}
|