Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [udig-users] udig

Hi,

I assume that you are on Linux?  It is an issue with uDig not being able to find the mozilla libraries for the introscreen. 

The aptana forum has the answer:

http://forums.aptana.com/viewtopic.php?f=37&t=8463&p=31327

I think this is the interesting part of the post:

#!/bin/sh
MOZILLA_FIVE_HOME=/usr/lib/xulrunner
if [ $LD_LIBRARY_PATH ]; then
   LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$LD_LIBRARY_PATH
else
   LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME
fi
export MOZILLA_FIVE_HOME LD_LIBRARY_PATH
Your options are to add this to the udig script or put it in your .bashrc file.

Jesse

On Mon, Apr 20, 2009 at 1:38 PM, Nicholas I <nicholas.domnic.i@xxxxxxxxx> wrote:
Hi,

 when i try to open udig, it gives the following error and not opening the udig main window.

Caused by: java.lang.UnsatisfiedLinkError: no swt-mozilla-gtk-3349 or swt-mozilla-gtk in swt.library.path, java.library.path or the jar file
    at org.eclipse.swt.internal.Library.loadLibrary(Library.java:219)
    at org.eclipse.swt.internal.Library.loadLibrary(Library.java:151)
    at org.eclipse.swt.browser.Mozilla.create(Mozilla.java:308)
    ... 57 more

Thank You


_______________________________________________
udig-users mailing list
udig-users@xxxxxxxxxxxxxxxxxxxxx
http://lists.refractions.net/mailman/listinfo/udig-users



Back to the top