Zcash -> BTCPrivate for introductory docs, AC_INIT package name is now BTCPrivate

This commit is contained in:
Jon Layton 2017-12-27 19:57:02 -05:00
parent bfc3959c06
commit a10b01a99c
7 changed files with 14 additions and 11 deletions

View File

@ -1,4 +1,6 @@
Copyright (c) 2016-2017 The Zcash developers
Copyright (c) 2017 The Bitcoin Private developers
Copyright (c) 2016-2017 The ZClassic developers
Copyright (c) 2016-2017 The ZCash developers
Copyright (c) 2009-2017 The Bitcoin Core developers
Permission is hereby granted, free of charge, to any person obtaining a copy

View File

@ -1,4 +1,4 @@
Building Zcash
Building Bitcoin Private
See the Zcash github wiki (https://github.com/zcash/zcash/wiki) for instructions on building zcashd,
the intended-for-services, no-graphical-interface, reference

View File

@ -120,7 +120,7 @@ Building
--------
Build Zcash along with most dependencies from source by running
./zcutil/build.sh. Currently only Linux is officially supported.
`./zcutil/build.sh`. Currently only Linux is officially supported.
License
-------

View File

@ -8,7 +8,7 @@ define(_ZC_BUILD_VAL, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, m4_incr(_CLI
define(_CLIENT_VERSION_SUFFIX, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, _CLIENT_VERSION_REVISION-beta$1, m4_eval(_CLIENT_VERSION_BUILD < 50), 1, _CLIENT_VERSION_REVISION-rc$1, m4_eval(_CLIENT_VERSION_BUILD == 50), 1, _CLIENT_VERSION_REVISION, _CLIENT_VERSION_REVISION-$1)))
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2017)
AC_INIT([Zcash],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_SUFFIX(_ZC_BUILD_VAL)],[https://github.com/zcash/zcash/issues],[zcash])
AC_INIT([BTCPrivate],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_SUFFIX(_ZC_BUILD_VAL)],[https://github.com/btcprivate/bitcoinprivate/issues],[zcash])
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADERS([src/config/bitcoin-config.h])
AC_CONFIG_AUX_DIR([build-aux])

View File

@ -1,4 +1,4 @@
Zcash Contributors
BTCPrivate Contributors
==================
Jack Grigg (428)

View File

@ -3,8 +3,8 @@ exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: Zcash consensus library
Description: Library for the Zcash consensus protocol.
Name: BTCPrivate consensus library
Description: Library for the BTCPrivate consensus protocol.
Version: @PACKAGE_VERSION@
Libs: -L${libdir} -lzcashconsensus
Cflags: -I${includedir}

View File

@ -75,10 +75,11 @@ function main() {
|| exit_locked_error
cat <<EOF
Zcash - fetch-params.sh
BTCPrivate - fetch-params.sh
This script will fetch the Zcash zkSNARK parameters and verify their
integrity with sha256sum.
This script will fetch the BTCPrivate zkSNARK parameters and verify their
integrity with sha256sum. These parameters are identical to those for
both ZClassic and ZCash.
If they already exist locally, it will exit now and do nothing else.
EOF
@ -89,7 +90,7 @@ EOF
mkdir -p "$PARAMS_DIR"
README_PATH="$PARAMS_DIR/README"
cat >> "$README_PATH" <<EOF
This directory stores common Zcash zkSNARK parameters. Note that it is
This directory stores common BTCPrivate zkSNARK parameters. Note that it is
distinct from the daemon's -datadir argument because the parameters are
large and may be shared across multiple distinct -datadir's such as when
setting up test networks.