integrated TAP-plugins to be shipped with LMMS

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1070 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-06-05 06:31:42 +00:00
parent bfcbb50eab
commit 686295aaa4
32 changed files with 13274 additions and 3 deletions

View File

@@ -2,8 +2,8 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50)
AC_INIT(lmms, 0.4.0-svn20080603, lmms-devel/at/lists/dot/sf/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.4.0-svn20080603)
AC_INIT(lmms, 0.4.0-svn20080604, lmms-devel/at/lists/dot/sf/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.4.0-svn20080604)
AM_CONFIG_HEADER(config.h)
@@ -592,7 +592,7 @@ else
fi
AC_MSG_CHECKING([whether to ship caps])
AC_MSG_CHECKING([whether to ship CAPS])
AC_ARG_WITH([caps],
AS_HELP_STRING([--without-caps],
[do not ship C* Audio Plugin Suite]), ,
@@ -605,6 +605,19 @@ fi
AM_CONDITIONAL(SHIP_CAPS, test "x$with_caps" = "xyes")
AC_MSG_CHECKING([whether to ship TAP plugins])
AC_ARG_WITH([tap],
AS_HELP_STRING([--without-tap],
[do not ship TAP plugins]), ,
[ with_tap=yes ])
if test "x$with_tap" = "xyes" ; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
AM_CONDITIONAL(SHIP_TAP, test "x$with_tap" = "xyes")
if [ "$build_win32" = "true" ] ; then
BIN2RES=`pwd`/buildtools/bin2res.exe
else
@@ -706,6 +719,7 @@ AC_CONFIG_FILES([Makefile
plugins/ladspa_browser/Makefile
plugins/ladspa_effect/Makefile
plugins/ladspa_effect/caps/Makefile
plugins/ladspa_effect/tap/Makefile
plugins/lb302/Makefile
plugins/live_tool/Makefile
plugins/midi_import/Makefile