diff --git a/source/backend/CarlaUtils.cpp b/source/backend/CarlaUtils.cpp index cd2dedc23..1168e6015 100644 --- a/source/backend/CarlaUtils.cpp +++ b/source/backend/CarlaUtils.cpp @@ -468,15 +468,19 @@ const char* carla_get_complete_license_text() "
  • RtAudio v" RTAUDIO_VERSION " and RtMidi v" RTMIDI_VERSION " for native Audio and MIDI support
  • " // Internal plugins -#ifdef HAVE_EXPERIMENTAL_PLUGINS - "
  • AT1, BLS1 and REV1 plugin code by Fons Adriaensen
  • " -#endif "
  • MIDI Sequencer UI code by Perry Nguyen
  • " + + // External plugins +#ifdef HAVE_EXTERNAL_PLUGINS +# ifdef HAVE_EXPERIMENTAL_PLUGINS + "
  • AT1, BLS1 and REV1 plugin code by Fons Adriaensen
  • " +# endif "
  • Nekobi plugin code based on nekobee by Sean Bolton and others
  • " "
  • VectorJuice and WobbleJuice plugin code by Andre Sklenar
  • " -#ifdef HAVE_ZYN_DEPS +# ifdef HAVE_ZYN_DEPS "
  • ZynAddSubFX plugin code by Mark McCurry and Nasca Octavian Paul
  • " -#endif +# endif +#endif // HAVE_EXTERNAL_PLUGINS // end "" @@ -751,6 +755,9 @@ void carla_x11_move_window(uintptr_t winId, int x, int y) XMoveWindow(disp, winId, x, y); XCloseDisplay(disp); } +#else + // unused + return; (void)x; (void)y; #endif }