summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johanson <latexer@gentoo.org>2005-12-22 09:07:32 +0000
committerPeter Johanson <latexer@gentoo.org>2005-12-22 09:07:32 +0000
commitee4ca0fe2fe0105a52570362d6970c6d69b328a4 (patch)
tree1cbb9d86d40631e9a768c3880cce8840efa431a8 /dev-dotnet/libgdiplus/files
parentNew release: 20051125 (diff)
downloadgentoo-2-ee4ca0fe2fe0105a52570362d6970c6d69b328a4.tar.gz
gentoo-2-ee4ca0fe2fe0105a52570362d6970c6d69b328a4.tar.bz2
gentoo-2-ee4ca0fe2fe0105a52570362d6970c6d69b328a4.zip
Fix for bug #115710 and bump for new release.
(Portage version: 2.0.53)
Diffstat (limited to 'dev-dotnet/libgdiplus/files')
-rw-r--r--dev-dotnet/libgdiplus/files/digest-libgdiplus-1.1.111
-rw-r--r--dev-dotnet/libgdiplus/files/libgdiplus-1.1.10-libungif-configure-fix.diff14
2 files changed, 15 insertions, 0 deletions
diff --git a/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.1.11 b/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.1.11
new file mode 100644
index 000000000000..4e78f1a99097
--- /dev/null
+++ b/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.1.11
@@ -0,0 +1 @@
+MD5 c0de8ffb854029431e0f60bda8f34032 libgdiplus-1.1.11.tar.gz 1255643
diff --git a/dev-dotnet/libgdiplus/files/libgdiplus-1.1.10-libungif-configure-fix.diff b/dev-dotnet/libgdiplus/files/libgdiplus-1.1.10-libungif-configure-fix.diff
new file mode 100644
index 000000000000..32eba37c584f
--- /dev/null
+++ b/dev-dotnet/libgdiplus/files/libgdiplus-1.1.10-libungif-configure-fix.diff
@@ -0,0 +1,14 @@
+diff -aur libgdiplus-1.1.10-orig/configure.in libgdiplus-1.1.10/configure.in
+--- libgdiplus-1.1.10-orig/configure.in 2005-11-09 19:08:08.000000000 -0800
++++ libgdiplus-1.1.10/configure.in 2005-12-22 00:53:51.000000000 -0800
+@@ -207,8 +207,8 @@
+ AC_MSG_WARN(*** GIF loader will not be built (giflibrary not found) ***))
+ fi
+
+-if ! test x$GIF != x; then
+- AC_CHECK_LIB(gif, DGifOpenFileName,
++if test x$with_libgif != xno && ! test x$GIF != x; then
++ AC_CHECK_LIB(ungif, DGifOpenFileName,
+ [AC_CHECK_HEADER(gif_lib.h,
+ GIF='ungif'; LIBGIF='-lungif',
+ AC_MSG_WARN(*** GIF loader will not be built (ungiflibrary not found) ***))],