From d0de1fe36670e106a285a09edb9df27ee70ef530 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Mon, 14 Apr 2008 20:47:22 +0000 Subject: [PATCH] s/return;/return 0;/ for the Freetype run-check, bug #700, thank you! Originally committed to SVN as r2181. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 3f30df8b9..f90ab3481 100644 --- a/configure.in +++ b/configure.in @@ -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