Re: Force PATH env variable - Enabling .DLL loading

2006-01-12 Thread Steve Loughran
Dominique Devienne wrote: On 1/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: If a .dll depends on another .dll, then it must be found in the system-specific, on Windows the Path (on *nix, LD_LIBRARY_PATH usually). So to be platform "independend" you use both? Jokes appart, to rea

Re: Force PATH env variable - Enabling .DLL loading

2006-01-11 Thread Dominique Devienne
On 1/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > >If a .dll depends on another .dll, then it must be found in > >the system-specific, on Windows the Path (on *nix, > >LD_LIBRARY_PATH usually). > > So to be platform "independend" you use both? > > > > Jokes appart, to really be as p

Re: Force PATH env variable - Enabling .DLL loading

2006-01-10 Thread Dominique Devienne
> >As I need to deploy the app on numerous machines, I'd rather > >avoid to set the PATH each time. > >Any idea to set the environment within ant commandline or even > >better within the ant file before I call the java task? > > try setting the java.library.path system property. There are 2 way