diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2007-03-15 23:39:25 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2007-03-15 23:39:25 +0000 |
commit | 87cbf419e7e168aca169a514a95674333c13a2d6 (patch) | |
tree | 11bb3637df271f89e51a06668cb70c793aa4ce62 /packages/gd/gd_2.0.33.bb | |
parent | c83221df5af4799ba3529c470fcda84c76c0b8f7 (diff) |
gd 2.0.33: Explicitly disable support for freetype and fontconfig. There are
two issues if this isn't done:
- If you have these built under OE then support for them will be included,
otherwise it won't be. Explicitly disabling these ensures support is never
included.
- If you don't have these built under OE it will attempt to use the host
versions of these libraries. (Picked up be insane.bbclass).
Diffstat (limited to 'packages/gd/gd_2.0.33.bb')
-rw-r--r-- | packages/gd/gd_2.0.33.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/gd/gd_2.0.33.bb b/packages/gd/gd_2.0.33.bb index 78500bbcbd..7c1f7c3d19 100644 --- a/packages/gd/gd_2.0.33.bb +++ b/packages/gd/gd_2.0.33.bb @@ -2,7 +2,7 @@ SECTION = "libs" LICENSE = "GD" DESCRIPTION = "gd is a library used to create PNG, JPEG, or WBMP images." DEPENDS = "libpng jpeg zlib" -PR = "r0" +PR = "r1" SRC_URI = "http://www.boutell.com/gd/http/gd-${PV}.tar.gz" S = "${WORKDIR}/gd-${PV}" @@ -12,6 +12,8 @@ inherit autotools binconfig gettext EXTRA_OECONF += " --with-zlib=${STAGING_LIBDIR}/.. \ --with-png=${STAGING_LIBDIR}/.. \ --with-jpeg=${STAGING_LIBDIR}/.. \ + --without-freetype \ + --without-fontconfig \ --without-xpm \ --without-x" |