Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-03 Thread mark
Hi Andreast, The awt based app seems to work when I resize the frame (I tried awt.Demo). If I do not resize, I get a blank frame with the menubar only. Resizing the frame brings me the buttons to see, except the close button. This is all against gnome-2.10 core. I am seeing the same thing on

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-03 Thread Andreas Tobler
Hi Mark, [EMAIL PROTECTED] wrote: The awt based app seems to work when I resize the frame (I tried awt.Demo). If I do not resize, I get a blank frame with the menubar only. Resizing the frame brings me the buttons to see, except the close button. This is all against gnome-2.10 core. I am

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-02 Thread Mark Wielaard
Hi Andreas, On Tue, 2005-08-02 at 06:41 +0200, Andreas Tobler wrote: Well, here I should have said 'once', with the actual cp I didn't. :( But I know jamvm will fail because it in src/dll.c:300 it checks against .so and new will .dylib on darwin. OK. Useful additional datapoint :) Maybe the

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-02 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: On Tue, 2005-08-02 at 06:41 +0200, Andreas Tobler wrote: Well, here I should have said 'once', with the actual cp I didn't. :( But I know jamvm will fail because it in src/dll.c:300 it checks against .so and new will .dylib on darwin. In the meantime I built

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-01 Thread Mark Wielaard
Hi, On Sun, 2005-07-24 at 23:05 +0200, Andreas Tobler wrote: the attached patch changes link behavior of darwin ppc and makes it work in reality. For detailed explanation please search the apple developer pages. In short, when building against a .so we have a module which is like an

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-01 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: On Sun, 2005-07-24 at 23:05 +0200, Andreas Tobler wrote: the attached patch changes link behavior of darwin ppc and makes it work in reality. For detailed explanation please search the apple developer pages. In short, when building against a .so we have a

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-01 Thread Mark Wielaard
Hi Andreas, On Mon, 2005-08-01 at 23:29 +0200, Andreas Tobler wrote: Well, I will investigate a bit more. But my guess is here: with jamvm and other vm you run interpreted code, where the classpath lib is the last bit in the chain. On gcj/libgcj you can build/run native apps where you link

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-01 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: On Mon, 2005-08-01 at 23:29 +0200, Andreas Tobler wrote: Well, I will investigate a bit more. But my guess is here: with jamvm and other vm you run interpreted code, where the classpath lib is the last bit in the chain. On gcj/libgcj you can build/run native

[cp-patches] [patch] make darwin 'work' with classpath

2005-07-24 Thread Andreas Tobler
Hi all, the attached patch changes link behavior of darwin ppc and makes it work in reality. For detailed explanation please search the apple developer pages. In short, when building against a .so we have a module which is like an extension an not like a shared library as known on ppc linux.