From owner-freebsd-cvsweb@FreeBSD.ORG Thu Mar 31 06:48:51 2005 Return-Path: Delivered-To: freebsd-cvsweb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F048316A4CE for ; Thu, 31 Mar 2005 06:48:51 +0000 (GMT) Received: from smtp813.mail.sc5.yahoo.com (smtp813.mail.sc5.yahoo.com [66.163.170.83]) by mx1.FreeBSD.org (Postfix) with SMTP id C2CC443D53 for ; Thu, 31 Mar 2005 06:48:51 +0000 (GMT) (envelope-from noackjr@alumni.rice.edu) Received: from unknown (HELO optimator.noacks.org) (noacks@swbell.net@70.240.208.130 with login) by smtp813.mail.sc5.yahoo.com with SMTP; 31 Mar 2005 06:48:51 -0000 Received: from localhost (localhost [127.0.0.1]) by optimator.noacks.org (Postfix) with ESMTP id B73F161BC; Thu, 31 Mar 2005 00:48:50 -0600 (CST) Received: from optimator.noacks.org ([127.0.0.1]) by localhost (optimator.noacks.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 09875-03; Thu, 31 Mar 2005 00:48:49 -0600 (CST) Received: from compgeek.noacks.org (compgeek [192.168.1.10]) by optimator.noacks.org (Postfix) with ESMTP id 3738A6141; Thu, 31 Mar 2005 00:48:49 -0600 (CST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by compgeek.noacks.org (8.13.3/8.13.3) with ESMTP id j2V6mma9004862; Thu, 31 Mar 2005 00:48:49 -0600 (CST) (envelope-from noackjr@alumni.rice.edu) Message-ID: <424B9D50.2030400@alumni.rice.edu> Date: Thu, 31 Mar 2005 00:48:48 -0600 From: Jon Noack User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050326) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Vinodh Srinivasan References: <1c665f2305033022227c0235d1@mail.gmail.com> In-Reply-To: <1c665f2305033022227c0235d1@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at noacks.org cc: freebsd-cvsweb@freebsd.org Subject: Re: cvsGraph error, X-BeenThere: freebsd-cvsweb@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: noackjr@alumni.rice.edu List-Id: CVS Web maintenance mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Mar 2005 06:48:52 -0000 On 03/31/05 00:22, Vinodh Srinivasan wrote: > I have configured and installed a user-wide copy of vsgraph with > viewCVS but get the following error "error while loading shared > libraries: libgd.so.2: cannot open shared object file: No such file or > directory ". I have tried to even set the LD_LIBRARY_PATH to /gd/lib/ > but no luck. My question is should libgd.so.2 be created as a > system-wide library (moved to /usr/local/lib) or does cvsgraph allow > user-wide library installation?. > thanks > vinodh Moving it to /usr/local/lib (thus making it system-wide) is probably the quickest way to get up and running, but you should be able to get it working on a more limited basis also. I would recommend looking into the cvsgraph configure args, specifically --with-gd-inc and --with-gd-lib. Use the appropriate paths, recompile cvsgraph, and see if that works. Note that there are similar configure args for freetype2, jpeg, png, and z. If you have not installed these libraries system-wide, you may need to set the appropriate paths for them as well. Unless you have a compelling reason not to (for example, security with multiple virtual hosts), installing these libraries system-wide is your best bet as it simplifies maintenance. Jon