Your message dated Sat, 6 Aug 2016 11:42:01 +0200
with message-id <[email protected]>
and subject line Re: fontconfig: Please eliminate unneeded zlib dependency
has caused the Debian Bug report #405234,
regarding fontconfig: Please eliminate unneeded zlib dependency
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
405234: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=405234
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: fontconfig
Version: 2.4.1-2
Severity: wishlist
Fontconfig has a spurious dependency on libz emanating from
freetype-config. This (untested) patch should fix it. I have
also suggested that it be fixed in freetype-config.
For background on this issue, see http://rerun.lefant.net/checklib/
and the pages linked from there. This will only be a serious issue
if zlib makes a ABI change (though even a compatible ABI
change will raise the issue to some extent), so this is 'wishlist'.
--- configure.in 2006-12-02 18:24:39.000000000 -0500
+++ configure.in.new 2007-01-01 20:08:52.000000000 -0500
@@ -217,7 +217,7 @@
fi
FREETYPE_CFLAGS="`$ft_config --cflags`"
-FREETYPE_LIBS="`$ft_config --libs`"
+FREETYPE_LIBS="-lfreetype"
AC_SUBST(FREETYPE_LIBS)
AC_SUBST(FREETYPE_CFLAGS)
--- End Message ---
--- Begin Message ---
On Mon, 01 Jan 2007 20:13:54 -0500 Nathanael Nerode <[email protected]> wrote:
> Package: fontconfig
> Version: 2.4.1-2
> Severity: wishlist
>
> Fontconfig has a spurious dependency on libz emanating from
> freetype-config. This (untested) patch should fix it. I have
> also suggested that it be fixed in freetype-config.
>
> For background on this issue, see http://rerun.lefant.net/checklib/
> and the pages linked from there. This will only be a serious issue
> if zlib makes a ABI change (though even a compatible ABI
> change will raise the issue to some extent), so this is 'wishlist'.
>
> --- configure.in 2006-12-02 18:24:39.000000000 -0500
> +++ configure.in.new 2007-01-01 20:08:52.000000000 -0500
> @@ -217,7 +217,7 @@
> fi
>
> FREETYPE_CFLAGS="`$ft_config --cflags`"
> -FREETYPE_LIBS="`$ft_config --libs`"
> +FREETYPE_LIBS="-lfreetype"
>
> AC_SUBST(FREETYPE_LIBS)
> AC_SUBST(FREETYPE_CFLAGS)
Fontconfig no longer depends on libz. Closing this.
Emilio
--- End Message ---