I recommend the following for running the app so it can find all the libs:
create a file 'run-appleseed' with the following contents:
#!/bin/sh
if [ -n "." ] ; then
if [ "${LD_LIBRARY_PATH+set}" = "set" ] ; then
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:."
else
export LD_LIBRARY_PATH="."
fi
fi
exec ./appleseed.studio
#!/bin/sh
if [ -n "." ] ; then
if [ "${LD_LIBRARY_PATH+set}" = "set" ] ; then
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:."
else
export LD_LIBRARY_PATH="."
fi
fi
exec ./appleseed.studio
To copy to clipboard, switch view to plain text mode
this way, it doesn't affect the global LD_LIBRARY_PATH settings.
I just tried my app in a fresh ubuntu 10.10 install and did not see any font issue like you do.
Are you using a different than default font for your application?
Bookmarks