Merge branch '0.6.x' of git://gitorious.org/+bitcoin-stable-developers/bitcoin/bitcoi...
authorGavin Andresen <gavinandresen@gmail.com>
Tue, 19 Jun 2012 20:34:10 +0000 (16:34 -0400)
committerGavin Andresen <gavinandresen@gmail.com>
Tue, 19 Jun 2012 20:34:10 +0000 (16:34 -0400)
15 files changed:
1  2 
bitcoin-qt.pro
src/checkpoints.cpp
src/db.cpp
src/db.h
src/key.cpp
src/key.h
src/main.cpp
src/makefile.linux-mingw
src/makefile.mingw
src/makefile.osx
src/makefile.unix
src/script.cpp
src/util.cpp
src/util.h
src/version.h

diff --cc bitcoin-qt.pro
Simple merge
Simple merge
diff --cc src/db.cpp
Simple merge
diff --cc src/db.h
Simple merge
diff --cc src/key.cpp
@@@ -1,14 -1,9 +1,14 @@@
  // Copyright (c) 2009-2012 The Bitcoin developers
  // Distributed under the MIT/X11 software license, see the accompanying
- // file license.txt or http://www.opensource.org/licenses/mit-license.php.
+ // file COPYING or http://www.opensource.org/licenses/mit-license.php.
  
 -#include <openssl/ec.h>
 +#include <map>
 +
  #include <openssl/ecdsa.h>
 +#include <openssl/obj_mac.h>
 +
 +#include "key.h"
 +#include "util.h"
  
  // Generate a private key from just the secret parameter
  int EC_KEY_regenerate_key(EC_KEY *eckey, BIGNUM *priv_key)
diff --cc src/key.h
Simple merge
diff --cc src/main.cpp
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc src/script.cpp
@@@ -1,9 -1,8 +1,9 @@@
  // Copyright (c) 2009-2010 Satoshi Nakamoto
  // Copyright (c) 2009-2012 The Bitcoin developers
  // Distributed under the MIT/X11 software license, see the accompanying
- // file license.txt or http://www.opensource.org/licenses/mit-license.php.
+ // file COPYING or http://www.opensource.org/licenses/mit-license.php.
  #include <boost/foreach.hpp>
 +#include <boost/tuple/tuple.hpp>
  
  using namespace std;
  using namespace boost;
diff --cc src/util.cpp
Simple merge
diff --cc src/util.h
Simple merge
diff --cc src/version.h
  // client versioning
  //
  
- static const int CLIENT_VERSION_MAJOR       =  0;
- static const int CLIENT_VERSION_MINOR       =  6;
- static const int CLIENT_VERSION_REVISION    =  3;
- static const int CLIENT_VERSION_BUILD       = 0;
+ // These need to be macro's, as version.cpp's voodoo requires it
+ #define CLIENT_VERSION_MAJOR       0
+ #define CLIENT_VERSION_MINOR       6
 -#define CLIENT_VERSION_REVISION    2
 -#define CLIENT_VERSION_BUILD       2
++#define CLIENT_VERSION_REVISION    3
++#define CLIENT_VERSION_BUILD       0
  
  static const int CLIENT_VERSION =
                             1000000 * CLIENT_VERSION_MAJOR