Removed LADSPA_PATH from ardev_common.sh, and added the MAC OSX path to list of default directories. Setting LADSPA_PATH in the script was stopping the default paths from being set

git-svn-id: svn://localhost/ardour2/trunk@1050 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Doug McLain 2006-11-02 02:17:50 +00:00
parent bc3afc09e8
commit c9d1452462
4 changed files with 4 additions and 12 deletions

View file

@ -472,7 +472,7 @@ libraries['flac'] = conf.Finish ()
libraries['boost'] = LibraryInfo ()
conf = Configure (libraries['boost'])
if conf.CheckHeader ('boost/shared_ptr.hpp', language='CXX') == 0:
if conf.CheckHeader ('boost/shared_ptr.hpp', language='CXX') == False:
print "Boost header files do not appear to be installed."
sys.exit (1)

View file

@ -8,6 +8,3 @@ export LD_LIBRARY_PATH=libs/surfaces/control_protocol:libs/ardour:libs/midi++2:l
# DYLD_LIBRARY_PATH is for darwin.
export DYLD_LIBRARY_PATH=$LD_LIBRARY_PATH
# LADSPA_PATH for OSX
export LADSPA_PATH=$LADSPA_PATH:/Library/Audio/Plug-Ins/LADSPA

View file

@ -110,12 +110,6 @@ style "default_base" = "medium_text"
base[INSENSITIVE] = "#4c5159"
base[SELECTED] = { 0.25, 0.25, 0.25 }
engine "clearlooks" {
menubarstyle = 2 # 0 = flat, 1 = sunken, 2 = flat gradient
menuitemstyle = 1 # 0 = flat, 1 = 3d-ish (gradient), 2 = 3d-ish (button)
listviewitemstyle = 1 # 0 = flat, 1 = 3d-ish (gradient)
progressbarstyle = 0 # 0 = candy bar, 1 = flat
}
}
style "base_frame"

View file

@ -83,7 +83,7 @@ PluginManager::PluginManager ()
}
refresh ();
cerr << "ladspa_path = " << ladspa_path << endl;//DEBUG
if (_manager == 0) {
_manager = this;
}
@ -106,7 +106,8 @@ PluginManager::ladspa_refresh ()
_ladspa_plugin_info.clear ();
if (ladspa_path.length() == 0) {
ladspa_path = "/usr/local/lib64/ladspa:/usr/local/lib/ladspa:/usr/lib64/ladspa:/usr/lib/ladspa";
ladspa_path = "/usr/local/lib64/ladspa:/usr/local/lib/ladspa:/usr/lib64/ladspa:/usr/lib/ladspa:/Library/Audio/Plug-Ins/LADSPA";
cerr << "ladspa_path set" << endl; //DEBUG
}
ladspa_discover_from_path (ladspa_path);