diff options
author | David Robillard <d@drobilla.net> | 2013-03-23 19:14:32 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-03-23 19:14:32 +0000 |
commit | 5db4f44b621edcf957aa7bc194bc7de0aca4d5f5 (patch) | |
tree | 4bcd9599cde8c5028f8a8a67f26ba6f6c01d5f43 /src/x11_in_qt4.cpp | |
parent | 47c6a8b49b297e4dba52fee225ae33ac6183cebb (diff) | |
download | suil-5db4f44b621edcf957aa7bc194bc7de0aca4d5f5.tar.gz suil-5db4f44b621edcf957aa7bc194bc7de0aca4d5f5.tar.bz2 suil-5db4f44b621edcf957aa7bc194bc7de0aca4d5f5.zip |
Fix check for LV2 1.4.1 when building recursively.
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5096 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/x11_in_qt4.cpp')
-rw-r--r-- | src/x11_in_qt4.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/x11_in_qt4.cpp b/src/x11_in_qt4.cpp index 152b371..bd079ab 100644 --- a/src/x11_in_qt4.cpp +++ b/src/x11_in_qt4.cpp @@ -21,7 +21,7 @@ #include "./suil_config.h" #include "./suil_internal.h" -#ifndef HAVE_NEW_LV2 +#ifndef HAVE_LV2_1_4_1 typedef struct _LV2UI_Idle_Interface LV2UI_Idle_Interface; #endif @@ -40,7 +40,7 @@ public: , _ui_timer(0) {} -#ifdef HAVE_NEW_LV2 +#ifdef HAVE_LV2_1_4_1 void showEvent(QShowEvent* event) { if (_idle_iface && _ui_timer == 0) { _ui_timer = this->startTimer(30); @@ -68,7 +68,7 @@ wrapper_wrap(SuilWrapper* wrapper, SuilInstance* instance) { const LV2UI_Idle_Interface* idle_iface = NULL; -#ifdef HAVE_NEW_LV2 +#ifdef HAVE_LV2_1_4_1 idle_iface = (const LV2UI_Idle_Interface*)suil_instance_extension_data( instance, LV2_UI__idleInterface); #endif @@ -113,7 +113,7 @@ suil_wrapper_new(SuilHost* host, suil_add_feature(features, &n_features, LV2_UI__resize, &wrapper->resize); -#ifdef HAVE_NEW_LV2 +#ifdef HAVE_LV2_1_4_1 suil_add_feature(features, &n_features, LV2_UI__idleInterface, NULL); #endif |