Hello Guest

Webstarting DevIL on 0.97.1 on win32

  • 2 Replies
  • 12175 Views
Webstarting DevIL on 0.97.1 on win32
« on: August 15, 2005, 03:21:49 »
I can't seem to get DevIL to webstart properly. Every time I try to use it I get an error saying the application has failed to start due to not finding ILU.dll - I assume this is because DevIL.dll tries to load ILU.dll itself?

Anyway, my web start is set up with all the native libraries in a single jar using:
Code: [Select]

  <resources os="Windows">
  <j2se version="1.4+"/>
    <nativelib href="lwjgl-windows.jar"/>
  </resources>


Any ideas?

*

Offline Matzon

  • *****
  • 2242
Webstarting DevIL on 0.97.1 on win32
« Reply #1 on: August 15, 2005, 08:40:30 »
this is the native one we use on lwjgl.org:
http://lwjgl.org/jnlp/native_win32.jar

and the jnlp snippet:
Quote
<resources os="Windows">
    <j2se version="1.4+"/>
    <nativelib href="native_win32.jar"/>
  </resources>

Webstarting DevIL on 0.97.1 on win32
« Reply #2 on: August 15, 2005, 13:42:44 »
Thanks, that helped me narrow down the problem. Even using the same jar files as you did, it didn't work at first, until I realised that wasn't trying to use ILU at all, just IL and ILUT. So I just added a call to ILU.create(), and it all worked fine!