diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2011-10-18 15:36:57 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2011-10-18 15:36:57 +0200 |
commit | 6e19f4b63d9d3d99622d32d7f07fdbd796acc13c (patch) | |
tree | 1df14496f92c1ff99e2e9db2e358cb65441b42aa | |
parent | 3ba2a2a0690a3150ceb323cd670c0a4167d7edee (diff) |
A lot of configure changes.
-rw-r--r-- | configure.in | 49 |
1 files changed, 41 insertions, 8 deletions
diff --git a/configure.in b/configure.in index 72d2d75..c148ba9 100644 --- a/configure.in +++ b/configure.in @@ -40,6 +40,37 @@ else fi AM_CONDITIONAL([ENABLE_LV2], [test "x$enable_lv2" = "xyes"]) +#dnl ====================== +#dnl Compile VST plugin +#dnl ====================== +#AC_ARG_ENABLE([vst], +#[ --enable-vst Compile the VST plugin [default=yes]],, +# [enable_vst="yes"]) +#if test "x$enable_vst" = "xyes"; then +# enable_vst=yes +# dnl ====================== +# dnl Check for vstcore +# dnl ====================== +# PKG_CHECK_MODULES(VST, vstcore >= 4.1) +#else +# AC_MSG_RESULT([*** VST plugin will not be compiled ***]) +# enable_vst=no +#fi +#AM_CONDITIONAL([ENABLE_VST], [test "x$enable_vst" = "xyes"]) + +dnl ====================== +dnl Compile AU plugin +dnl ====================== +#AC_ARG_ENABLE([au], +#[ --enable-au Compile the audio units plugin [default=no]],, +# [enable_au="no"]) +#if test "x$enable_au" = "xyes"; then +# enable_au=yes +#else +# AC_MSG_RESULT([*** Audio Units plugin will not be compiled ***]) +# enable_au=no +#fi +#AM_CONDITIONAL([ENABLE_AU], [test "x$enable_au" = "xyes"]) dnl ====================== dnl Compile cli client @@ -162,22 +193,18 @@ if test "x$enable_cli" = "xyes"; then dnl dnl Setup plugin paths dnl - plugindir=${libdir}/drumgizmo - AC_SUBST([plugindir]) + dgplugindir=${libdir}/drumgizmo + AC_SUBST([dgplugindir]) - INPUT_PLUGIN_DIR=${plugindir}/input - OUTPUT_PLUGIN_DIR=${plugindir}/output - #LV2_PLUGIN_DIR=${plugindir}/lv2 + INPUT_PLUGIN_DIR=${dgplugindir}/input + OUTPUT_PLUGIN_DIR=${dfplugindir}/output AC_SUBST([INPUT_PLUGIN_DIR]) AC_SUBST([OUTPUT_PLUGIN_DIR]) - #AC_SUBST([LV2_PLUGIN_DIR]) AC_DEFINE_UNQUOTED(INPUT_PLUGIN_DIR, "${prefix}/lib/drumgizmo/input", [Input plugin dir]) AC_DEFINE_UNQUOTED(OUTPUT_PLUGIN_DIR, "${prefix}/lib/drumgizmo/output", [Output plugin dir]) - #AC_DEFINE_UNQUOTED(LV2_PLUGIN_DIR, "${prefix}/lib/drumgizmo/lv2", - # [LV2 plugin dir]) else AC_MSG_RESULT([*** Command line interface disabled per user request ***]) enable_cli=no @@ -279,10 +306,16 @@ AC_SUBST(CPPFLAGS) AC_SUBST(CXXFLAGS) AC_SUBST(LDFLAGS) +# au/Makefile + AC_OUTPUT( Makefile + tools/Makefile src/Makefile + vst/Makefile lv2/Makefile + plugingui/Makefile + include/Makefile drumgizmo/Makefile drumgizmo/input/Makefile drumgizmo/input/dummy/Makefile |