From owner-freebsd-questions Tue Jul 24 15:50:18 2001 Delivered-To: freebsd-questions@freebsd.org Received: from jezebel.demon.co.uk (jezebel.demon.co.uk [158.152.38.143]) by hub.freebsd.org (Postfix) with ESMTP id BF0C137B405 for ; Tue, 24 Jul 2001 15:50:14 -0700 (PDT) (envelope-from rdls@jezebel.demon.co.uk) Received: (from rdls@localhost) by jezebel.demon.co.uk (8.11.1/8.11.1) id f6OMldA01234; Tue, 24 Jul 2001 23:47:39 +0100 (BST) (envelope-from rdls) Date: Tue, 24 Jul 2001 23:47:39 +0100 From: Richard Smith To: zer0700@excite.com Cc: freebsd-questions@freebsd.org Subject: Re: applixware Message-ID: <20010724234738.A1118@gaia.home.rdls.net> References: <15182587.995962399305.JavaMail.imail@goochy.excite.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <15182587.995962399305.JavaMail.imail@goochy.excite.com>; from zer0700@excite.com on Tue, Jul 24, 2001 at 01:13:19AM -0700 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 On Tue, Jul 24, 2001 at 01:13:19AM -0700, zer0700@excite.com wrote: > after installing a fresh copy of 4.3 release and the applixware 5.0 suite > that came with my copy of 4.1 release, i get this error: > > $applix > /usr/libexec/ld-elf.so.1: /usr/X11R6/lib/libgtk12.so.2: Undefined symbol > "getresuid" > axnet error, axmain already started. > > i have these ports installed: [snip] The simplest solution I've found (here, I think) is as follows: Create the file `getresuid.c' containing the offending symbol: void getresuid(void){} Install it somewhere with: # cc -shared -fPIC -DPIC -o /usr/local/lib/getresuid.so getresuid.c Then start applix with this script: #!/bin/sh - export LD_PRELOAD=/usr/local/lib/getresuid.so applix $* Works for me, Rich. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message