From owner-cvs-all@FreeBSD.ORG Thu Jul 27 14:35:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11DA716A4DD; Thu, 27 Jul 2006 14:35:47 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (nagual.pp.ru [194.87.13.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D7A243D46; Thu, 27 Jul 2006 14:35:46 +0000 (GMT) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.7/8.13.7) with ESMTP id k6REZiOc089229; Thu, 27 Jul 2006 18:35:44 +0400 (MSD) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.13.7/8.13.7/Submit) id k6REZiB9089228; Thu, 27 Jul 2006 18:35:44 +0400 (MSD) (envelope-from ache) Date: Thu, 27 Jul 2006 18:35:44 +0400 From: Andrey Chernov To: Kirill Ponomarew Message-ID: <20060727143544.GA89188@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Kirill Ponomarew , ports-committers@FreeBSD.ORG, cvs-ports@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200607261544.k6QFi4vo030825@repoman.freebsd.org> <20060727080920.GD44716@voodoo.bawue.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060727080920.GD44716@voodoo.bawue.com> User-Agent: Mutt/1.5.12-2006-07-14 Cc: cvs-ports@FreeBSD.ORG, cvs-all@FreeBSD.ORG, ports-committers@FreeBSD.ORG Subject: Re: cvs commit: ports/graphics/ImageMagick Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Jul 2006 14:35:47 -0000 On Thu, Jul 27, 2006 at 10:09:20AM +0200, Kirill Ponomarew wrote: > On Wed, Jul 26, 2006 at 03:44:04PM +0000, Andrey A. Chernov wrote: > > ache 2006-07-26 15:44:04 UTC > > > > FreeBSD ports repository > > > > Modified files: > > graphics/ImageMagick Makefile distinfo pkg-plist > > Log: > > Upgrade to 6.2.8-5 > > > > Submitted by: maintainer > > It seems broken here on amd64: > > /usr/local/lib/libjasper.so: warning: warning: tmpnam() possibly used unsafely; consider using mkstemp() > magick/.libs/libMagick.so: undefined reference to `png_set_asm_flags' > magick/.libs/libMagick.so: undefined reference to `png_get_asm_flags' > gmake: *** [utilities/animate] Error 1 > *** Error code 2 Probably your local error, check where PNG_USE_PNGGCCRD is defined (I don't have amd64 to test). This function call is compiled only if PNG_USE_PNGGCCRD is defined, which should _not_ be defined on != i386 i.e. amd64. See coders/png.c: #if defined(PNG_USE_PNGGCCRD) && defined(PNG_ASSEMBLER_CODE_SUPPORTED) \ && (PNG_LIBPNG_VER >= 10200) ... png_set_asm_flags(ping, asm_flags & ~mmx_disable_mask); } #endif -- http://ache.pp.ru/