1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-15 15:11:12 +02:00

Enable VST support on Linux

This commit is contained in:
lllucius@gmail.com
2014-05-28 06:45:03 +00:00
parent b556d83c54
commit 5b18fe3347
6 changed files with 1165 additions and 1052 deletions

29
configure vendored
View File

@@ -637,6 +637,8 @@ ac_subst_vars='am__EXEEXT_FALSE
am__EXEEXT_TRUE
LTLIBOBJS
LIBOBJS
USE_VST_FALSE
USE_VST_TRUE
USE_QUICKTIME_FALSE
USE_QUICKTIME_TRUE
USE_AUDIO_UNITS_FALSE
@@ -975,6 +977,7 @@ with_widgetextra
enable_audiounits
enable_ladspa
enable_quicktime
enable_vst
with_portmixer
'
ac_precious_vars='build_alias
@@ -1702,6 +1705,7 @@ Optional Features:
--enable-ladspa enable LADSPA plug-in support [default=yes]
--enable-quicktime enable QuickTime import support (Mac OS X only)
[default=auto]
--enable-vst enable VST plug-in support [default=yes]
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
@@ -23624,6 +23628,14 @@ else
fi
# Check whether --enable-vst was given.
if test "${enable_vst+set}" = set; then :
enableval=$enable_vst; use_vst=$enableval
else
use_vst="yes"
fi
# Check whether --with-portmixer was given.
@@ -23637,6 +23649,7 @@ fi
case "${host_os}" in
darwin* | rhapsody*)
CDEPEND="AudacityHeaders.h.gch"
@@ -24161,7 +24174,19 @@ $as_echo "#define USE_QUICKTIME 1" >>confdefs.h
fi
if test "$use_vst" = yes; then
USE_VST_TRUE=
USE_VST_FALSE='#'
else
USE_VST_TRUE='#'
USE_VST_FALSE=
fi
if [ "$use_vst" = "yes" ] ; then
$as_echo "#define USE_VST 1" >>confdefs.h
fi
case "${host_os}" in
cygwin*)
@@ -24483,6 +24508,10 @@ if test -z "${USE_QUICKTIME_TRUE}" && test -z "${USE_QUICKTIME_FALSE}"; then
as_fn_error $? "conditional \"USE_QUICKTIME\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${USE_VST_TRUE}" && test -z "${USE_VST_FALSE}"; then
as_fn_error $? "conditional \"USE_VST\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
: "${CONFIG_STATUS=./config.status}"
ac_write_fail=0