luis jure <[EMAIL PROTECTED]> writes: > lilypond: /usr/lib/openoffice/program/libstdc++.so.6: version > 'CXXABI_1.3.1' not found (required by lilypond)
The problem is that lilypond is executed in the environment of OpenOffice.org, that has several special presets to use the OOo version of shared libraries. In this case, the culpit is LD_LIBRARY_PATH. In OOOLilypond's Config, change LilyPond Executable from lilypond to env LD_LIBRARY_PATH= lilypond (Note the space between = and lilypond!). Alternatively, you can make a small shell wrapper script and use that instead of lilypond: #!/bin/sh LD_LIBRARY_PATH= export LD_LIBRARY_PATH exec /usr/bin/lilypond ${1+"$@"} -- Johan _______________________________________________ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user