From 95a6a1273e1d5133f09a4f8ba578b4d0f1f25812 Mon Sep 17 00:00:00 2001 From: cpu6502 <44790317+cpu6502@users.noreply.github.com> Date: Thu, 9 May 2024 21:03:21 +0100 Subject: [PATCH] Windows build changes --- configure.ac | 26 +++++++++++++------------- doc/README_windows.txt | 14 +++++--------- 2 files changed, 18 insertions(+), 22 deletions(-) diff --git a/configure.ac b/configure.ac index 4a0511200b367..f55a355d01705 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,9 @@ AC_PREREQ([2.69]) define(_CLIENT_VERSION_MAJOR, 27) -define(_CLIENT_VERSION_MINOR, 99) -define(_CLIENT_VERSION_BUILD, 0) +define(_CLIENT_VERSION_MINOR, 0) +define(_CLIENT_VERSION_BUILD, 1) define(_CLIENT_VERSION_RC, 0) -define(_CLIENT_VERSION_IS_RELEASE, false) +define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2024) define(_COPYRIGHT_HOLDERS,[The %s developers]) define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Bitcoin Core]]) @@ -29,17 +29,17 @@ if test -n "$PKG_CONFIG_LIBDIR"; then PKG_CONFIG="env PKG_CONFIG_LIBDIR=$PKG_CONFIG_LIBDIR $PKG_CONFIG" fi -BITCOIN_DAEMON_NAME=bytecoind -BITCOIN_GUI_NAME=bytecoin-qt -BITCOIN_TEST_NAME=test_bytecoin -BITCOIN_CLI_NAME=bytecoin-cli -BITCOIN_TX_NAME=bytecoin-tx -BITCOIN_UTIL_NAME=bytecoin-util -BITCOIN_CHAINSTATE_NAME=bytecoin-chainstate -BITCOIN_WALLET_TOOL_NAME=bytecoin-wallet +BITCOIN_DAEMON_NAME=bitcoind +BITCOIN_GUI_NAME=bitcoin-qt +BITCOIN_TEST_NAME=test_bitcoin +BITCOIN_CLI_NAME=bitcoin-cli +BITCOIN_TX_NAME=bitcoin-tx +BITCOIN_UTIL_NAME=bitcoin-util +BITCOIN_CHAINSTATE_NAME=bitcoin-chainstate +BITCOIN_WALLET_TOOL_NAME=bitcoin-wallet dnl Multi Process -BITCOIN_MP_NODE_NAME=bytecoin-node -BITCOIN_MP_GUI_NAME=bytecoin-gui +BITCOIN_MP_NODE_NAME=bitcoin-node +BITCOIN_MP_GUI_NAME=bitcoin-gui dnl Unless the user specified ARFLAGS, force it to be cr dnl This is also the default as-of libtool 2.4.7 diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 07d61b3bda13a..dc766f57e4222 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,9 +1,9 @@ -Bitcoin Core +Bytecoin Core ============= Intro ----- -Bitcoin is a free open source peer-to-peer electronic cash system that is +Bytecoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending. @@ -11,13 +11,9 @@ with each other, with the help of a P2P network to check for double-spending. Setup ----- -Unpack the files into a directory and run bitcoin-qt.exe. +Unpack the files into a directory and run bytecoin-qt.exe. -Bitcoin Core is the original Bitcoin client and it builds the backbone of the network. -However, it downloads and stores the entire history of Bitcoin transactions; +Bytecoin Core is the original Bytecoin client and it builds the backbone of the network. +However, it downloads and stores the entire history of Bytecoin transactions; depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more. - -See the bitcoin wiki at: - https://en.bitcoin.it/wiki/Main_Page -for more help and information.