From owner-freebsd-questions Fri Oct 25 3:18:12 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C05237B401 for ; Fri, 25 Oct 2002 03:18:10 -0700 (PDT) Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1139A43E42 for ; Fri, 25 Oct 2002 03:18:09 -0700 (PDT) (envelope-from freebsd@akruijff.dds.nl) Received: from cybertron.kruijff ([213.10.151.186]) by smtp05.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id H4J8MC01.GUH; Fri, 25 Oct 2002 12:18:12 +0200 Date: Fri, 25 Oct 2002 12:18:06 +0200 From: Alex X-Mailer: The Bat! (v1.53d) Reply-To: freebsd-reply@akruijff.dds.nl X-Priority: 3 (Normal) Message-ID: <15978396.20021025121806@dds.nl> To: "Toomas Aas" Cc: freebsd-questions@freebsd.org Subject: Re: Webalizer undefined symbol problem In-Reply-To: <200210251002.g9PA2qO18779@lv.raad.tartu.ee> References: <200210251002.g9PA2qO18779@lv.raad.tartu.ee> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Friday, October 25, 2002, 12:02:01 PM, you wrote: > Hello! > To analyze the logs of my web server, I installed > /usr/ports/www/webalizer, which got me webalizer-2.1.10_1 version of > the port. > The install goes without any problems, but attempts to run webalizer > result in following message: > heerold# webalizer -p -c /usr/local/etc/webalizer.my.conf > /usr/libexec/ld-elf.so.1: /usr/lib/libgd.so.2: Undefined symbol > "jpeg_destroy" > All the dependencies for webalizer seem to be installed: > heerold# pkg_info | grep -E "jpeg|png|gd" > gd-1.8.4_6 A graphics library for fast image creation > jpeg-6b_1 IJG's jpeg compression utilities > png-1.2.4 Library for manipulating PNG images > What's up? > -- > Toomas Aas | toomas.aas@raad.tartu.ee | http://www.raad.tartu.ee/~toomas/ > * War doesn't determine who's right. War determines who's left. > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message Dear Toomas, Do `find /usr/ports -name pkg-plist -exec grep -l "libgd*" \;` This will find all ports that may got your file in there list. If one or more port come along that you have installed on your system then rebuild it. (Assuming you got portupgrade installed) `portupgrade -f port` If this doesn't work do `find / -name "libgd*"`. If you find a file named like libgd.so.number some where on you file system make a link to it. Check if there is a libgd.so@ (ls -F) If so make a link to this file (it will save you trouble when the number changes). -- Best regards, Alex The FreeBSD handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html How to get the best results from FreeBSD-Questions http://www.lemis.com/questions.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message