All of lore.kernel.org
 help / color / mirror / Atom feed
From: Randy MacLeod <randy.macleod@windriver.com>
To: Khem Raj <raj.khem@gmail.com>
Cc: openembeded-devel <openembedded-devel@lists.openembedded.org>
Subject: Re: [PATCH 1/3] imagemagick: update from 7.8.47 to 7.9.16
Date: Sun, 5 Jan 2020 17:44:15 -0500	[thread overview]
Message-ID: <e16e2987-9eaf-ac1b-caa2-f58ce58112db@windriver.com> (raw)
In-Reply-To: <CAMKF1sr69SX-KN9GBXoaU8vdh1McmDTm7jL+RbjxqrhdXEfr+A@mail.gmail.com>

On 1/5/20 3:33 PM, Khem Raj wrote:
> On Sun, Jan 5, 2020 at 8:43 AM Randy MacLeod
> <Randy.MacLeod@windriver.com> wrote:
>> Only the copyright date for the LICENSE file changed.
>> Add PACKAGECONFIG to enable use of tcmalloc.
>>
> packageconfig disables it now by default, which is fine but I would
> like to know what
> is the defaults in general since this might be a change in behavior

Good question.

The default is the system malloc, with flags to use other

alloc systems, from configure --help:
   --with-jemalloc         enable jemalloc memory allocation library support
   --with-tcmalloc         enable tcmalloc memory allocation library support
   --with-umem             enable umem memory allocation library support

And running configure reports:

Memory allocation library:
   JEMalloc          --with-jemalloc=no        no
   TCMalloc          --with-tcmalloc=no        no
   UMem              --with-umem=no        no

so there isn't a change in the default behaviour.

../Randy

>
>> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
>> ---
>>   .../{imagemagick_7.0.8.bb => imagemagick_7.0.9.bb}         | 7 ++++---
>>   1 file changed, 4 insertions(+), 3 deletions(-)
>>   rename meta-oe/recipes-support/imagemagick/{imagemagick_7.0.8.bb => imagemagick_7.0.9.bb} (95%)
>>
>> diff --git a/meta-oe/recipes-support/imagemagick/imagemagick_7.0.8.bb b/meta-oe/recipes-support/imagemagick/imagemagick_7.0.9.bb
>> similarity index 95%
>> rename from meta-oe/recipes-support/imagemagick/imagemagick_7.0.8.bb
>> rename to meta-oe/recipes-support/imagemagick/imagemagick_7.0.9.bb
>> index 4ee06d77f..3f7d06e26 100644
>> --- a/meta-oe/recipes-support/imagemagick/imagemagick_7.0.8.bb
>> +++ b/meta-oe/recipes-support/imagemagick/imagemagick_7.0.9.bb
>> @@ -4,14 +4,14 @@ HOMEPAGE = "https://www.imagemagick.org/"
>>   DESCRIPTION = "ImageMagick is a collection of tools for displaying, converting, and \
>>   editing raster and vector image files. It can read and write over 200 image file formats."
>>   LICENSE = "ImageMagick"
>> -LIC_FILES_CHKSUM = "file://LICENSE;md5=05ff94b3ff59fe6fa7489fa26e3d9142"
>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=41b4fa9af60c88e61484b02c0561181a"
>>   # FIXME: There are many more checked libraries. All should be added or explicitly disabled to get consistent results.
>>   DEPENDS = "lcms bzip2 jpeg libpng tiff zlib fftw freetype libtool"
>>
>>   BASE_PV := "${PV}"
>> -PV .= "_47"
>> +PV .= "_13"
>>   SRC_URI = "git://github.com/ImageMagick/ImageMagick.git "
>> -SRCREV = "b672df7a44b0ab0219b1fa78b3673c2810ddd374"
>> +SRCREV = "15b935d64f613b5a0fc9d3fead5c6ec1b0e3908f"
>>
>>   S = "${WORKDIR}/git"
>>
>> @@ -29,6 +29,7 @@ PACKAGECONFIG[lzma] = "--with-lzma,--without-lzma,xz"
>>   PACKAGECONFIG[openjpeg] = "--with-openjp2,--without-openjp2,openjpeg"
>>   PACKAGECONFIG[pango] = "--with-pango,--without-pango,pango cairo"
>>   PACKAGECONFIG[rsvg] = "--with-rsvg,--without-rsvg,librsvg"
>> +PACKAGECONFIG[tcmalloc] = "--with-tcmalloc=yes,--with-tcmalloc=no,gperftools"
>>   PACKAGECONFIG[webp] = "--with-webp,--without-webp,libwebp"
>>   PACKAGECONFIG[wmf] = "--with-wmf,--without-wmf,libwmf"
>>   PACKAGECONFIG[x11] = "--with-x,--without-x,virtual/libx11 libxext libxt"
>> --
>> 2.22.0
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


-- 
# Randy MacLeod
# Wind River Linux



      reply	other threads:[~2020-01-05 22:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-05 16:42 [PATCH 1/3] imagemagick: update from 7.8.47 to 7.9.16 Randy MacLeod
2020-01-05 16:42 ` [PATCH 2/3] tigervnc: update from 1.9.0 to 1.10.1 Randy MacLeod
2020-01-05 16:42 ` [PATCH 3/3] rsyslog: update from 8.1910 to 8.1911 Randy MacLeod
2020-01-05 20:33 ` [PATCH 1/3] imagemagick: update from 7.8.47 to 7.9.16 Khem Raj
2020-01-05 22:44   ` Randy MacLeod [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e16e2987-9eaf-ac1b-caa2-f58ce58112db@windriver.com \
    --to=randy.macleod@windriver.com \
    --cc=openembedded-devel@lists.openembedded.org \
    --cc=raj.khem@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.