From owner-freebsd-questions Fri Dec 31 9:59:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.nwlink.com (smtp.nwlink.com [209.20.130.57]) by hub.freebsd.org (Postfix) with ESMTP id 61F9614D51 for ; Fri, 31 Dec 1999 09:59:25 -0800 (PST) (envelope-from rjoseph@nwlink.com) Received: from nwlink.com (ip101.r10.d.bel.nwlink.com [207.202.174.101]) by smtp.nwlink.com (8.9.3/8.9.3) with ESMTP id JAA09391 for ; Fri, 31 Dec 1999 09:59:24 -0800 (PST) Message-ID: <386CEE4C.663647F6@nwlink.com> Date: Fri, 31 Dec 1999 09:56:28 -0800 From: R Joseph Wright X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.4-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 Cc: freebsd-questions@FreeBSD.ORG Subject: Re: StarOffice 5.1 Problem. References: <3.0.32.19991231190513.011006b8@idx.com.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Danny wrote: > > Refering to the 2nd last stage of the process > > Question > > 1)Do I have to remove all the code in setup and soffice and replace it with > the code in the documentation? > Now it's all coming back to me. First, all my information I got from archives of FreeBSD mailing lists at lists.openresources.com/FreeBSD. I didn't have to replace the setup and soffice scripts, although there is a modification to the soffice script that needs to be done after the setup program has been run: replace the line *) test=/usr/bin/test ;; with *) test=bin/test ;; replace the line if $test -L "$0" ; then with if $test -f "$0" ; then and replace the line sd_script='ls -l $0 | sed "s/.*${sd_basename} -> //g"` with sd_script='ls $0 | sed "s/.*${sd_basename} -> //g"` And of course there is the need to recompile your kernel to include these options: options "P1003_1B" options "_KPOSIX_PRIORITY_SCHEDULING" options "_KPOSIX_VERSION=199309L" (You should probably do the recompile before anything else) After that, it ought to run properly. That's how I did it. Best regards, Joseph -- You will do foolish things, but do them with enthusiasm. Colette. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message