mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-06-18 14:18:33 +02:00
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:
parent
24d00b6309
commit
5d67d28ff0
2 changed files with 0 additions and 34 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue