s/return;/return 0;/ for the Freetype run-check, bug #700, thank you!

Originally committed to SVN as r2181.
This commit is contained in:
Amar Takhar 2008-04-14 20:47:22 +00:00
parent b012a3149c
commit d0de1fe366
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ AC_AGI_COMPILE([Freetype], [freetype], [$FREETYPE_CFLAGS], [$FREETYPE_LIBS],[
int main(void) {
FT_Library ft;
if (FT_Init_FreeType(&ft)) { return 1; }
return;
return 0;
}])
if test "$agi_with_freetype" = "no"; then