Remove two unused files

There are two check-link.c files which were "tests" in the autotools
build and are unused ever since the autotools build was removed.

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2024-05-26 07:14:57 +02:00
parent 24d00b6309
commit 5d67d28ff0
2 changed files with 0 additions and 34 deletions

View file

@ -1,17 +0,0 @@
#include <cairo-boilerplate.h>
#include <stdio.h>
int
main (void)
{
printf ("Check linking to the just built cairo boilerplate library\n");
if (cairo_boilerplate_version () == CAIRO_VERSION) {
return 0;
} else {
fprintf (stderr,
"Error: linked to cairo boilerplate version %s instead of %s\n",
cairo_boilerplate_version_string (),
CAIRO_VERSION_STRING);
return 1;
}
}

View file

@ -1,17 +0,0 @@
#include <cairo.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;
}
}