From owner-freebsd-openoffice@FreeBSD.ORG Thu Dec 16 09:49:52 2004 Return-Path: Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95A7616A4CE for ; Thu, 16 Dec 2004 09:49:52 +0000 (GMT) Received: from satie.private.org (qclgw.qcl.t.u-tokyo.ac.jp [133.11.70.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id 944DE43D2F for ; Thu, 16 Dec 2004 09:49:51 +0000 (GMT) (envelope-from chat95@mac.com) Received: from localhost (localhost [IPv6:::1]) by satie.private.org (8.13.1/8.13.1) with ESMTP id iBG9nqdO061990; Thu, 16 Dec 2004 18:49:53 +0900 (JST) (envelope-from chat95@mac.com) Date: Thu, 16 Dec 2004 18:49:52 +0900 (JST) Message-Id: <20041216.184952.607964202.chat95@mac.com> To: sander.vesik@gmail.com From: NAKATA Maho In-Reply-To: References: <20041202.151042.730570312.chat95@mac.com> Organization: private X-Mailer: Mew version 3.3 on XEmacs 21.4.14 (Reasonable Discussion) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: openoffice@freebsd.org Subject: Re: m62 break in sw X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 09:49:52 -0000 In Message-ID: Sander Vesik wrote: > On Thu, 02 Dec 2004 15:10:42 +0900 (JST), NAKATA Maho wrote: > > In Message-ID: > > Sander Vesik wrote: > > > > > There are however problems with javaldx (which doesn't like the BSD > > > way of calling the jdk 1.4.2-p6 or similar and needs patching) and > > > something with libxml2.so version. And epm has some more > > > complaints.... > > > > yes. I know about it. > > javaldx always fails, as you know jvmfwk is largely changed. > > and also recently pythonupgrade cws is integrated... > > > > thanks, > > -- NAKATA, Maho > > > > > > A hack like this makes javaldx work: > > Index: plugins/sunmajor/pluginlib/sunversion.cxx > =================================================================== > RCS file: /cvs/udk/jvmfwk/plugins/sunmajor/pluginlib/sunversion.cxx,v > retrieving revision 1.4 > diff -u -r1.4 sunversion.cxx > --- plugins/sunmajor/pluginlib/sunversion.cxx 23 Jul 2004 11:52:17 > -0000 1.4 > +++ plugins/sunmajor/pluginlib/sunversion.cxx 10 Dec 2004 20:38:40 -0000 > @@ -243,7 +243,9 @@ > m_preRelease = Rel_RC1; > else if (! strcmp(pCur, "rc2")) > m_preRelease = Rel_RC2; > - else if (! strcmp(pCur, "rc3")) > + else if (! strcmp(pCur, "p6")) > + return true; > + else if (! strcmp(pCur, "rc3")) > m_preRelease = Rel_RC3; > else > return false; > > getting it be a real patch would just be some extra changes to handle > the extra _0x and a #ifdef freebsd to surroundit all or very close to > that I think > many thanks! I asked about it jdk@ and I noticed that difference between linux and freebsd's jdk is version number only...java.vendor is Sun Microsystems Inc. :( all the best, -- NAKATA, Maho