mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=1787
This commit is contained in:
parent
411a3d3471
commit
52d61eb6f0
|
@ -5358,9 +5358,12 @@ Karl 2003/07/18
|
|||
make_project (added)
|
||||
|
||||
Karl 2003/07/22
|
||||
fixed 'debug assertion failure'.
|
||||
fixed 'debug assertion failure'. Release 1.05.
|
||||
|
||||
Client/*
|
||||
|
||||
updated database schema
|
||||
db/*, test/*, py/*
|
||||
|
||||
Karl 2003/07/24
|
||||
fixed dll problem. Release 1.06.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#define MAJOR_VERSION 1
|
||||
#define MINOR_VERSION 05
|
||||
#define PACKAGE_VERSION "1.05"
|
||||
#define VERSION "1.05"
|
||||
#define MINOR_VERSION 06
|
||||
#define PACKAGE_VERSION "1.06"
|
||||
#define VERSION "1.06"
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
#!/bin/sh
|
||||
|
||||
# $Id$
|
||||
|
||||
# change boinc version number in configure.ac
|
||||
|
||||
die()
|
||||
{
|
||||
echo "$@" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
cmd()
|
||||
{
|
||||
"$@" || die "couldn't $*"
|
||||
}
|
||||
|
||||
[ "$1" ] || die "syntax: set-version 1.42"
|
||||
|
||||
echo "Setting boinc version to $1."
|
||||
|
||||
cmd mv configure.ac configure.ac.old
|
||||
cmd sed "s/^AC_INIT.*/AC_INIT(BOINC, $1)/" configure.ac.old > configure.ac
|
||||
cmd ./_autosetup -c
|
||||
cmd cd client
|
||||
cmd make win/win_config.h
|
Loading…
Reference in New Issue