summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-06-07 11:51:19 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2014-06-07 11:51:19 +0200
commitfdef2ab3e87afe8857ea7485a91c25d8727e6b7e (patch)
tree40548c6cf9882c0633f405703ea46350d10255ad
parentcbd29ad93827f2494864668ae6759416f74ba3cc (diff)
Fix default LV2 compilation.
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index d47159f..47d8b1e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -106,9 +106,9 @@ dnl ======================
dnl Compile LV2 plugin
dnl ======================
AC_ARG_ENABLE([lv2],
-[ --enable-lv2 Compile the LV2 plugin [default=yes]],,
- [enable_lv2="yes"])
-if test "x$enable_lv2" = "xno"; then
+[ --enable-lv2 Compile the LV2 plugin [default=no]],,
+ [enable_lv2="no"])
+if test "x$enable_lv2" = "xyes"; then
enable_lv2=yes
dnl ======================
dnl Check for lv2core
@@ -124,7 +124,7 @@ dnl ======================
dnl Compile VST plugin
dnl ======================
AC_ARG_ENABLE([vst],
-[ --enable-vst Compile the VST plugin [default=yes]],,
+[ --enable-vst Compile the VST plugin [default=no]],,
[enable_vst="no"])
if test "x$enable_vst" = "xyes"; then
enable_vst=yes