better error message if VST SDK is not installed and neeed

git-svn-id: svn://localhost/ardour2/trunk@1080 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-11-06 19:59:00 +00:00
parent c860d925da
commit e9604e2173
7 changed files with 29 additions and 11 deletions

View file

@ -16,7 +16,7 @@ import SCons.Node.FS
SConsignFile()
EnsureSConsVersion(0, 96)
version = '2.0beta6.2'
version = '2.0beta7'
subst_dict = { }
@ -706,7 +706,7 @@ conf = Configure (env)
have_cxx = conf.TryAction (Action (env['CXX'] + ' --version'))
if have_cxx[0] != 1:
print "This system has no functional C++ compiler. You cannot build Ardour from source without one."
exit (1)
sys.exit (1)
else:
print "Congratulations, you have a functioning C++ compiler."

View file

@ -91,6 +91,8 @@ class SndFileSource : public AudioFileSource {
bool _capture_end;
nframes_t capture_start_frame;
nframes_t file_pos; // unit is frames
nframes_t xfade_out_count;
nframes_t xfade_in_count;
Sample* xfade_buf;
nframes_t crossfade (Sample* data, nframes_t cnt, int dir);

View file

@ -513,13 +513,21 @@ IO::deliver_output_no_pan (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nfr
dst = (*o)->get_buffer (nframes) + offset;
src = bufs[min(nbufs,i)];
if (dg != _gain || actual_gain == 1.0f) {
memcpy (dst, src, sizeof (Sample) * nframes);
} else if (actual_gain == 0.0f) {
memset (dst, 0, sizeof (Sample) * nframes);
} else {
if (_name == "Audio 2") {
for (nframes_t x = 0; x < nframes; ++x) {
dst[x] = src[x] * actual_gain;
dst[x] = 0.7;
}
} else {
if (dg != _gain || actual_gain == 1.0f) {
memcpy (dst, src, sizeof (Sample) * nframes);
} else if (actual_gain == 0.0f) {
memset (dst, 0, sizeof (Sample) * nframes);
} else {
for (nframes_t x = 0; x < nframes; ++x) {
dst[x] = src[x] * actual_gain;
}
}
}

View file

@ -1131,6 +1131,7 @@ Playlist::region_changed_proxy (Change what_changed, boost::weak_ptr<Region> wea
return;
}
/* this makes a virtual call to the right kind of playlist ... */
region_changed (what_changed, region);

View file

@ -1897,6 +1897,7 @@ Session::remove_route (shared_ptr<Route> route)
{
RCUWriter<RouteList> writer (routes);
shared_ptr<RouteList> rs = writer.get_copy ();
rs->remove (route);
/* deleting the master out seems like a dumb

View file

@ -2,6 +2,7 @@
import os
import os.path
import sys
import glob
fst_src = glob.glob('*.c')
@ -22,7 +23,12 @@ c = fst.Object ('vstwin', 'vstwin.c')
d = fst.Object ('vsti', 'vsti.c')
if fst['VST']:
Default([hackSDK,a,b,c,d])
if os.access ('vst/aeffectx.h', os.F_OK):
Default([hackSDK,a,b,c,d])
else:
print 'You have not installed the VST SDK in the correct location.'
print 'Please see http://ardour.org/building_vst_support for more information'
sys.exit (1)
env.Alias('tarball', env.Distribute (env['DISTTREE'],
fst_src + ['SConscript',