13
0

remove version.cc (sigh)

git-svn-id: svn://localhost/ardour2/trunk@1020 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-10-26 13:14:40 +00:00
parent 88446e52f1
commit 5d7fc828d1
3 changed files with 8 additions and 11 deletions

View File

@ -258,8 +258,6 @@ versionflag = '-DVERSIONSTRING=\\\"' + env['VERSION'] + '\\\"'
gtkardour.Append(CXXFLAGS=versionflag)
gtkardour.VersionBuild(['version.cc','version.h'], 'SConscript')
executable = 'ardour.bin'
ardour = gtkardour.Program(target = executable, source = gtkardour_files + extra_sources)
@ -307,6 +305,8 @@ env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour2'),
env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour2/pixmaps'), pixmap_files))
env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour2/icons'), icon_files))
env.AlwaysBuild ('version.cc')
env.Alias ('version', gtkardour.VersionBuild(['version.cc','version.h'], ['..']))
#dist
env.Alias ('tarball', env.Distribute (env['DISTTREE'],

View File

@ -141,6 +141,9 @@ static const char* authors[] = {
N_("Petter Sundlöf"),
N_("Thörsten Wilms"),
N_("Ben Loftis"),
N_("Stefan Kersten"),
N_("Christopher George"),
N_("Robert Jordens"),
0
};
@ -187,15 +190,10 @@ About::About ()
set_name (X_("ardour"));
set_website (X_("http://ardour.org/"));
set_website_label (X_("visit http://www.ardour.org/"));
set_version ((string_compose(_("%1\n(built with ardour/gtk %2.%3.%4 libardour: %5.%6.%7)"),
set_version ((string_compose(_("%1\n(built from revision %s"),
VERSIONSTRING,
gtk_ardour_major_version,
gtk_ardour_minor_version,
gtk_ardour_micro_version,
libardour_major_version,
libardour_minor_version,
libardour_micro_version)));
gtk_ardour_revision)));
#ifdef WITH_PAYMENT_OPTIONS
paypal_button.add (paypal_pixmap);

View File

@ -1 +0,0 @@
const char* gtk_ardour_revision = "$Revision$";