diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-06-05 20:04:38 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-06-05 20:04:38 +0200 | 
| commit | 0037fb60c257502e9589668453682816f7139f75 (patch) | |
| tree | 0efa8e5253ee506307df5a1c20c1a2259f66868d | |
| parent | f1f048f13df16df69794388a838c3aa7fa304a67 (diff) | |
Don't build LV2 and VST as default.
| -rw-r--r-- | configure.ac | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/configure.ac b/configure.ac index 997d140..d47159f 100644 --- a/configure.ac +++ b/configure.ac @@ -108,7 +108,7 @@ dnl ======================  AC_ARG_ENABLE([lv2],  [  --enable-lv2   Compile the LV2 plugin [default=yes]],,          [enable_lv2="yes"]) -if test "x$enable_lv2" = "xyes"; then +if test "x$enable_lv2" = "xno"; then  	 enable_lv2=yes      dnl ======================     dnl Check for lv2core @@ -125,7 +125,7 @@ dnl Compile VST plugin  dnl ======================  AC_ARG_ENABLE([vst],  [  --enable-vst   Compile the VST plugin [default=yes]],, -        [enable_vst="yes"]) +        [enable_vst="no"])  if test "x$enable_vst" = "xyes"; then  	 enable_vst=yes   else | 
