The only way I could get rid of the err for gsm on launch was to copy libgsm to
my DDO folder, even those I use DYLD_FALLBACK_LIBRARY_PATH, and libgsm is in all
of those locations.
Here's my launching script:
Code:
on run
--edit this to be the correct location and file to run (typically only edit
after the "drive_c")
set toRun to "Volumes/PORTABLE/PyLotRO/pylotro.exe"
--edit winePrefix if you are not using the default prefix
set winePrefix to "$HOME/.wine"
--edit wineLocation if your wine install is not the default location
set wineLocation to "/opt/local/bin"
--edit dyldFallbackLibraryPath if your using X11.app that is not the default
Apple one
set dyldFallbackLibraryPath to "/opt/X11/lib:/usr/X11/lib:/usr/lib"
-------------------------------------------------------
--DO NOT EDIT ANYTHING BELOW THIS LINE
-------------------------------------------------------
set toRunPath to do shell script "TEMPVAR=\"" & toRun &
"\"; echo \"${TEMPVAR%/*}\""
set toRunFile to do shell script "TEMPVAR=\"" & toRun &
"\"; TEMPVAR2=\"" & toRunPath & "\"; echo
\"${TEMPVAR#$TEMPVAR2/}\""
do shell script "PATH=\"" & wineLocation &
":$PATH\";
export WINEPREFIX=\"" & winePrefix & "\";
export DYLD_FALLBACK_LIBRARY_PATH=\"" & dyldFallbackLibraryPath
& "\";
cd \"" & toRunPath & "\";
wine \"" & toRunFile & "\" > /dev/null
2>&1 &"
end run
Does the fact that pylotro.exe and dndclient.exe are in different locations make
a difference? I wouldn't think so.
cartier pendants (http://www.cartier4us.com/Cartier-Pendants-6.html) are a mineral, a natural crystalline substance, the transparent form of pure carbon or nearly pure carbon. cartier (http://www.cartier4us.com/Cartier-Platinum-13.html) have extraordinary qualities. cartier tank (http://www.cartier4us.com/cartier-watches-8.html) have a broad colour range, high refraction, high dispersion of fire, very low reactivity to chemicals, rarity, and of course, extreme hardness and durability. cartier wrist watch (http://www.cartier4us.com/cartier-watches-8.html) are known as the "king of gems" they glitter, dazzle, and symbolize purity and strength. [Embarassed] [Embarassed] [Embarassed]
dcherring wrote:> Folks, > > In answer to the error "libgsm 32-bit development files not found," after completing the libtool command, you must copy the library to /usr/lib. "cp lib/* /usr/lib" would do nicely. > > HTH, > > DavidAlso...major problem with this command that I found was that in terminal you won't get an error message but this doesn't work unless you have read/write access to your /usr/lib directory which some people don't have. Therefore: Code: sudo libtool -dynamic -v -o lib/libgsm.1.0.13.dylib -install_name /usr/lib/libgsm.1.0.13.dylib -compatibility_version 1.0.13 -current_version 1.0.13 -lc ${GSMOBJS} sudo cp inc/* /usr/include sudo ln -s /usr/lib/libgsm.1.0.13.dylib /usr/lib/libgsm.dylib Unless there is an easier way?