Use LV2_SUPPORT define instead of HAVE_SLV2.
[ardour.git] / libs / ardour / ardour / plugin_manager.h
index b7385ad0aa289f682cccad0f41f522dc8cf087d6..2d60bf53f6134d45875d6b6c0f14d68af40092ae 100644 (file)
@@ -33,7 +33,7 @@
 #include "ardour/types.h"
 #include "ardour/plugin.h"
 
-#ifdef HAVE_SLV2
+#ifdef LV2_SUPPORT
 #include "ardour/lv2_plugin.h"
 #endif
 
@@ -56,7 +56,7 @@ class PluginManager : public boost::noncopyable {
        int add_ladspa_directory (std::string dirpath);
        int add_vst_directory (std::string dirpath);
 
-#ifdef HAVE_SLV2
+#ifdef LV2_SUPPORT
        LV2World* lv2_world() { return _lv2_world; }
 #endif
 
@@ -107,7 +107,7 @@ class PluginManager : public boost::noncopyable {
        ARDOUR::PluginInfoList* _lv2_plugin_info;
        ARDOUR::PluginInfoList* _au_plugin_info;
 
-#ifdef HAVE_SLV2
+#ifdef LV2_SUPPORT
        LV2World* _lv2_world;
 #endif