[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[mgp-users 00721] Typo(?) in configure.in



Hi,

It has come to my attention that the test for libgif will always fail
because configure.in tests for DGifOpenFilename, but the spelling in
                                           ^
giflib 4.1.0 is DGifOpenFileName.  Attached is a patch that changes the
                            ^
spelling to cope.

-- 
Avatar
--- configure.in.orig	Tue Sep 11 19:09:45 2001
+++ configure.in	Tue Sep 11 19:10:05 2001
@@ -308,7 +308,7 @@
 		[gif_ok=yes
 		GIFLIB="-lungif"
 		AC_DEFINE(USE_GIF)],
-	[AC_CHECK_LIB(gif, DGifOpenFilename,
+	[AC_CHECK_LIB(gif, DGifOpenFileName,
 		[gif_ok=yes
 		GIFLIB="-lgif"
 		AC_DEFINE(USE_GIF)],