generic powerful effect-framework

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@397 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2006-09-17 12:45:09 +00:00
parent d8214879d1
commit 9c41572504
62 changed files with 2972 additions and 427 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.2.1-cvs20060903, lmms-devel/at/lists/dot/sf/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.2.1-cvs20060903)
AC_INIT(lmms, 0.2.1-cvs20060917, lmms-devel/at/lists/dot/sf/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.2.1-cvs20060917)
AM_CONFIG_HEADER(config.h)
@@ -26,8 +26,8 @@ if test "x`$CC --version|head -1|cut -d\ -f3|cut -d. -f1`" = "x4" ; then
fi
fi
CFLAGS="$CFLAGS $EXTRAFLAGS"
CXXFLAGS="$CXXFLAGS $EXTRAFLAGS"
CFLAGS="-O2 $CFLAGS $EXTRAFLAGS"
CXXFLAGS="-O2 $CXXFLAGS $EXTRAFLAGS"
AC_PATH_XTRA
gw_CHECK_QT
@@ -195,6 +195,7 @@ if test "x$with_vst" = "xyes" ; then
AC_DEFINE(HAVE_VST_AEFFECTX_H)
else
WINE_OK_BUT_VST_INCOMPLETE="true"
WINEGCC=""
fi
fi
CC="$ORIG_CC"
@@ -204,7 +205,7 @@ AM_CONDITIONAL(VST_SUPPORT, test ! -z "$WINEGCC")
# check for LADSPA-SDK
AC_ARG_WITH(ladspa,
AS_HELP_STRING([--with-ladspa], [enable support for LADSPA]), [ with_ladspa=yes ], [ with_ladspa=no ])
AS_HELP_STRING([--without-ladspa], [enable support for LADSPA]), , [ with_ladspa=yes ] )
AH_TEMPLATE(HAVE_LADSPA_H, [Define to 1 if you have the <ladspa.h> header file.])
if test "x$with_ladspa" = "xyes" ; then
AC_CHECK_HEADER(ladspa.h, HAVE_LADSPA_H="true")
@@ -213,6 +214,7 @@ if test ! -z "$HAVE_LADSPA_H" ; then
AC_DEFINE(HAVE_LADSPA_H)
fi
#AM_CONDITIONAL(HAVE_LADSPA_H, test ! -z "$HAVE_LADSPA_H")
AM_CONDITIONAL(LADSPA_SUPPORT, test ! -z "$HAVE_LADSPA_H")
# check for STK
@@ -502,6 +504,7 @@ AC_CONFIG_FILES([Makefile
plugins/audio_file_processor/Makefile
plugins/bit_invader/Makefile
plugins/flp_import/Makefile
plugins/ladspa_effect/Makefile
plugins/midi_import/Makefile
plugins/organic/Makefile
plugins/plucked_string_synth/Makefile
@@ -648,40 +651,39 @@ fi
# not yet...
#if test -z "$HAVE_LADSPA_H" ; then
# echo " ========================"
# echo " === LMMS - WARNING ======================================================="
# echo " ========================"
# echo " ="
# echo " = You don't seem to have installed LADSPA-SDK which is neccessary for"
# echo " = building LMMS with LADSPA support. LADSPA-support is very useful"
# echo " = as you're able to use a lot of LADSPA-effects inside LMMS."
# echo " = Consider installing the missing packages for using the full power of LMMS."
# echo " ="
# with_warnings="true"
#else
# PLUGINS_TO_BUILD="$PLUGINS_TO_BUILD\n\t\* LADSPA-plugins"
#fi
if test -z "$HAVE_LADSPA_H" ; then
echo " ========================"
echo " === LMMS - WARNING ======================================================="
echo " ========================"
echo " ="
echo " = If you want support for LADSPA based effects, please pass"
echo " = "
echo " = --with-ladspa"
echo " = "
echo " = to configure, LADSPA support is still experimental."
echo " = You don't seem to have installed LADSPA-SDK which is neccessary for"
echo " = building LMMS with LADSPA support. LADSPA-support is very useful"
echo " = as you're able to use a lot of LADSPA-effects inside LMMS."
echo " = Consider installing the missing packages for using the full power of LMMS."
echo " ="
with_warnings="true"
else
PLUGINS_TO_BUILD="$PLUGINS_TO_BUILD\n\t\* LADSPA for effects processing"
PLUGINS_TO_BUILD="$PLUGINS_TO_BUILD\n\t\* LADSPA-effect-hoster"
fi
#if test -z "$HAVE_LADSPA_H" ; then
# echo " ========================"
# echo " === LMMS - WARNING ======================================================="
# echo " ========================"
# echo " ="
# echo " = If you want support for LADSPA based effects, please pass"
# echo " = "
# echo " = --with-ladspa"
# echo " = "
# echo " = to configure, LADSPA support is still experimental."
# echo " ="
# with_warnings="true"
#else
# PLUGINS_TO_BUILD="$PLUGINS_TO_BUILD\n\t\* LADSPA for effects processing"
#fi
if test -z "$HAVE_STK_H" ; then
echo " ========================"
echo " === LMMS - WARNING ======================================================="