diff --git a/source/backend/CarlaStandalone.cpp b/source/backend/CarlaStandalone.cpp
index dd92cd60d..1347cea70 100644
--- a/source/backend/CarlaStandalone.cpp
+++ b/source/backend/CarlaStandalone.cpp
@@ -465,10 +465,10 @@ const char* carla_get_complete_license_text()
text2 += "
VST plugin support, using official VST SDK 2.4 (trademark of Steinberg Media Technologies GmbH)";
#endif
#if defined(CARLA_OS_MAC) || defined(CARLA_OS_WIN)
- text2 += "VST3 plugin support"; // FIXME
+ text2 += "VST3 plugin support, using official VST SDK 3.6 (trademark of Steinberg Media Technologies GmbH)";
#endif
#ifdef CARLA_OS_MAC
- text2 += "AU plugin support"; // FIXME
+ text2 += "AU plugin support";
#endif
// Sample kit libraries
@@ -491,17 +491,19 @@ const char* carla_get_complete_license_text()
// misc libs
text4 += "liblo library for OSC support, http://liblo.sourceforge.net/";
text4 += "serd, sord, sratom and lilv libraries for LV2 discovery, http://drobilla.net/software/lilv/";
+#if ! (defined(CARLA_OS_MAC) || defined(CARLA_OS_WIN))
text4 += "RtAudio+RtMidi libraries for extra Audio and MIDI support, http://www.music.mcgill.ca/~gary/rtaudio/";
+#endif
// end
- text4 += "";
+ text5 += "";
#ifdef HAVE_LINUXSAMPLER
// LinuxSampler GPL exception
- text4 += "(*) Using LinuxSampler code in commercial hardware or software products is not allowed without prior written authorization by the authors.
";
+ text5 += "(*) Using LinuxSampler code in commercial hardware or software products is not allowed without prior written authorization by the authors.
";
#endif
- retText = text1 + text2 + text3 + text4;
+ retText = text1 + text2 + text3 + text4 + text5;
}
return retText;