changeset 32152:d125167b2034

Simplify FreeType check.
author diego
date Tue, 14 Sep 2010 10:32:27 +0000
parents 681716cd9232
children 39d82e93c917
files configure
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Tue Sep 14 10:25:12 2010 +0000
+++ b/configure	Tue Sep 14 10:32:27 2010 +0000
@@ -6310,8 +6310,7 @@
 #endif
 int main(void) {
     FT_Library library;
-    FT_Int major=-1,minor=-1,patch=-1;
-    int err=FT_Init_FreeType(&library);
+    FT_Init_FreeType(&library);
     return 0;
 }
 EOF