From a23a94588050afaf12a056a77780e7c810cc2431 Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 1 Aug 2014 06:26:25 +0100 Subject: [PATCH] Update about text --- source/backend/CarlaStandalone.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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;