Date: Tue, 24 Jul 2001 23:47:39 +0100 From: Richard Smith <rdls@satamatics.com> To: zer0700@excite.com Cc: freebsd-questions@freebsd.org Subject: Re: applixware Message-ID: <20010724234738.A1118@gaia.home.rdls.net> In-Reply-To: <15182587.995962399305.JavaMail.imail@goochy.excite.com>; from zer0700@excite.com on Tue, Jul 24, 2001 at 01:13:19AM -0700 References: <15182587.995962399305.JavaMail.imail@goochy.excite.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010724234738.A1118>
