From owner-freebsd-current@FreeBSD.ORG Wed Dec 24 06:10:37 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D39BF16A4CE for ; Wed, 24 Dec 2003 06:10:37 -0800 (PST) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D1F043D3F for ; Wed, 24 Dec 2003 06:10:36 -0800 (PST) (envelope-from eischen@vigrid.com) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mail.pcnet.com (8.12.10/8.12.1) with ESMTP id hBOEAZiw027039; Wed, 24 Dec 2003 09:10:35 -0500 (EST) Date: Wed, 24 Dec 2003 09:10:35 -0500 (EST) From: Daniel Eischen X-Sender: eischen@pcnet5.pcnet.com To: BSDC In-Reply-To: <20031224084858.GA12660@Amber.XtremeDev.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: current@freebsd.org Subject: Re: ImageMagick on 5.2-RC1 fails with pthread error (libkse) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: deischen@freebsd.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Dec 2003 14:10:38 -0000 On Wed, 24 Dec 2003, BSDC wrote: > On Tue, Dec 23, 2003 at 04:49:02PM -0800, Doug White wrote: > > On Tue, 23 Dec 2003, BSDC wrote: > > > > > Getting the following when trying to compile ImageMagick-5.5.7.14 on > > > FreeBSD 5.2-RC1, I don't think it's an issue with libkse specifically > > > though.. > > > > I can't reproduce this on my -current system compiling non-threaded.. you > > should have mentioned you are compiling with WITH_IMAGEMAGICK_THREADS. It > > does show up when using that option. > > Sorry, I forgot I had that set in my /etc/make.conf. I am compiling > ImageMagick with threads, and I'm also libmap'ing libc_r to libkse. > I have also updated to the latest -current as well. > > > This is probably a bug. Please send a message to the port maintainer; they > > need to update the port Makefile to include the correct thread > > selection bits. > > The port maintainer is set to ports@freebsd.org, I have tried there and > got no significant replies. I have also emailed mi@freebsd.org, who was > the last person to commit to the port. His reply was: > > "This is seems to be beyond the port maintainers or the vendor and is > likely to be the -lkse related problem. You should, probably, ask the > KSE developers or the -current mailing list. > > -mi" What is PTHREAD_LIBS set to in ports/Mk/bsd.port.mk? If you haven't modified it it should be PTHREAD_LIBS=-lc_r. > > > Making all in utilities > > > gmake[1]: Entering directory > > > `/usr/ports/graphics/ImageMagick/work/ImageMagick-5.5.7/utilities' > > > /bin/sh ../libtool --silent --mode=link cc -O -pipe -lc_r > > > -funroll-loops -DVM_STACK -march=pentium4 -Wall -L/usr/local/lib -lc_r > > > -L/usr/X11R6/lib -L/usr/local/lib -L/usr/local/lib -o composite > > > -L/usr/local/lib -lc_r -L/usr/X11R6/lib -L/usr/local/lib > > > -L/usr/local/lib composite.o ../magick/libMagick.la > > > /usr/local/lib/libjasper.so: warning: tmpnam() possibly used unsafely; > > > consider using mkstemp() > > > ../magick/.libs/libMagick.so: undefined reference to `pthread_equal' The problem appears to be in the build of "../libtool". It is probably ignoring the option "-lc_r". Take a look at it (libtool) and see if you can find where it processes (or doesn't process) -lc_r. This isn't a libkse issue. My guess is that either the port is broke when threads are enabled or you've got something wrong in your ports tree. -- Dan Eischen