Skip to content

Commit f8232fa

Browse files
barrystylebarrystyle
authored and
barrystyle
committed
Merge pull request dashpay#6 from barrystyle/0.14-pacenize
Rename base fileset in least disruptive way.
2 parents 1dac9ec + ff297e0 commit f8232fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+164
-163
lines changed

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export PYTHONPATH
1515

1616
if BUILD_BITCOIN_LIBS
1717
pkgconfigdir = $(libdir)/pkgconfig
18-
pkgconfig_DATA = libdashconsensus.pc
18+
pkgconfig_DATA = libpacglobalconsensus.pc
1919
endif
2020

2121
BITCOIND_BIN=$(top_builddir)/src/$(BITCOIN_DAEMON_NAME)$(EXEEXT)

configure.ac

+15-15
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ define(_CLIENT_VERSION_BUILD, 2)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
88
define(_COPYRIGHT_YEAR, 2019)
99
define(_COPYRIGHT_HOLDERS,[The %s developers])
10-
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Dash Core]])
11-
AC_INIT([Dash Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/dashpay/dash/issues],[dashcore],[https://dash.org/])
10+
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[PACGlobal]])
11+
AC_INIT([PACGlobal],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/PACGlobalOfficial/PAC/issues],[pacglobal],[https://pacglobal.io/])
1212
AC_CONFIG_SRCDIR([src/validation.cpp])
13-
AC_CONFIG_HEADERS([src/config/dash-config.h])
13+
AC_CONFIG_HEADERS([src/config/pacglobal-config.h])
1414
AC_CONFIG_AUX_DIR([build-aux])
1515
AC_CONFIG_MACRO_DIR([build-aux/m4])
1616

17-
BITCOIN_DAEMON_NAME=dashd
18-
BITCOIN_GUI_NAME=dash-qt
19-
BITCOIN_CLI_NAME=dash-cli
20-
BITCOIN_TX_NAME=dash-tx
17+
BITCOIN_DAEMON_NAME=pacglobald
18+
BITCOIN_GUI_NAME=pacglobal-qt
19+
BITCOIN_CLI_NAME=pacglobal-cli
20+
BITCOIN_TX_NAME=pacglobal-tx
2121

2222
AC_CANONICAL_HOST
2323

@@ -286,7 +286,7 @@ CPPFLAGS="$CPPFLAGS -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS"
286286

287287
AC_ARG_WITH([utils],
288288
[AS_HELP_STRING([--with-utils],
289-
[build dash-cli dash-tx (default=yes)])],
289+
[build pacglobal-cli pacglobal-tx (default=yes)])],
290290
[build_bitcoin_utils=$withval],
291291
[build_bitcoin_utils=yes])
292292

@@ -298,7 +298,7 @@ AC_ARG_WITH([libs],
298298

299299
AC_ARG_WITH([daemon],
300300
[AS_HELP_STRING([--with-daemon],
301-
[build dashd daemon (default=yes)])],
301+
[build pacglobald daemon (default=yes)])],
302302
[build_bitcoind=$withval],
303303
[build_bitcoind=yes])
304304

@@ -489,7 +489,7 @@ AC_C_BIGENDIAN
489489
dnl Check for pthread compile/link requirements
490490
AX_PTHREAD
491491

492-
# The following macro will add the necessary defines to dash-config.h, but
492+
# The following macro will add the necessary defines to pacglobal-config.h, but
493493
# they also need to be passed down to any subprojects. Pull the results out of
494494
# the cache and add them to CPPFLAGS.
495495
AC_SYS_LARGEFILE
@@ -989,19 +989,19 @@ AC_SUBST(UNIVALUE_LIBS)
989989

990990
BITCOIN_QT_PATH_PROGS([PROTOC], [protoc],$protoc_bin_path)
991991

992-
AC_MSG_CHECKING([whether to build dashd])
992+
AC_MSG_CHECKING([whether to build pacglobald])
993993
AM_CONDITIONAL([BUILD_BITCOIND], [test x$build_bitcoind = xyes])
994994
AC_MSG_RESULT($build_bitcoind)
995995

996-
AC_MSG_CHECKING([whether to build utils (dash-cli dash-tx)])
996+
AC_MSG_CHECKING([whether to build utils (pacglobal-cli pacglobal-tx)])
997997
AM_CONDITIONAL([BUILD_BITCOIN_UTILS], [test x$build_bitcoin_utils = xyes])
998998
AC_MSG_RESULT($build_bitcoin_utils)
999999

10001000
AC_MSG_CHECKING([whether to build libraries])
10011001
AM_CONDITIONAL([BUILD_BITCOIN_LIBS], [test x$build_bitcoin_libs = xyes])
10021002
if test x$build_bitcoin_libs = xyes; then
10031003
AC_DEFINE(HAVE_CONSENSUS_LIB, 1, [Define this symbol if the consensus lib has been built])
1004-
AC_CONFIG_FILES([libdashconsensus.pc:libdashconsensus.pc.in])
1004+
AC_CONFIG_FILES([libpacglobalconsensus.pc:libpacglobalconsensus.pc.in])
10051005
fi
10061006
AC_MSG_RESULT($build_bitcoin_libs)
10071007

@@ -1094,7 +1094,7 @@ if test x$bitcoin_enable_qt != xno; then
10941094
AC_MSG_WARN("xgettext is required to update qt translations")
10951095
fi
10961096

1097-
AC_MSG_CHECKING([whether to build test_dash-qt])
1097+
AC_MSG_CHECKING([whether to build test_pacglobal-qt])
10981098
if test x$use_gui_tests$bitcoin_enable_qt_test = xyesyes; then
10991099
AC_MSG_RESULT([yes])
11001100
BUILD_TEST_QT="yes"
@@ -1105,7 +1105,7 @@ fi
11051105

11061106
AM_CONDITIONAL([ENABLE_ZMQ], [test "x$use_zmq" = "xyes"])
11071107

1108-
AC_MSG_CHECKING([whether to build test_dash])
1108+
AC_MSG_CHECKING([whether to build test_pacglobal])
11091109
if test x$use_tests = xyes; then
11101110
AC_MSG_RESULT([yes])
11111111
BUILD_TEST="yes"
File renamed without changes.

0 commit comments

Comments
 (0)