-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #545 from pmienk/version3
Regenerate with updated version to 3.8.0.
- Loading branch information
Showing
4 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
AC_PREREQ([2.65]) | ||
|
||
# Process command-line arguments and perform initialization and verification. | ||
AC_INIT([libbitcoin-blockchain], [3.7.0], [[email protected]]) | ||
AC_INIT([libbitcoin-blockchain], [3.8.0], [[email protected]]) | ||
|
||
# Do compilation tests. | ||
AC_LANG(C++) | ||
|
@@ -269,13 +269,13 @@ AS_CASE([${with_tests}], [yes], | |
AC_MSG_NOTICE([boost_unit_test_framework_LIBS : ${boost_unit_test_framework_LIBS}])], | ||
[AC_SUBST([boost_unit_test_framework_LIBS], [])]) | ||
|
||
# Require bitcoin-database of at least version 3.7.0 and output ${bitcoin_database_CPPFLAGS/LIBS/PKG}. | ||
# Require bitcoin-database of at least version 3.8.0 and output ${bitcoin_database_CPPFLAGS/LIBS/PKG}. | ||
#------------------------------------------------------------------------------ | ||
PKG_CHECK_MODULES([bitcoin_database], [libbitcoin-database >= 3.7.0], | ||
[bitcoin_database_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-database >= 3.7.0" 2>/dev/null`" | ||
bitcoin_database_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-database >= 3.7.0" 2>/dev/null`"], | ||
[AC_MSG_ERROR([libbitcoin-database >= 3.7.0 is required but was not found.])]) | ||
AC_SUBST([bitcoin_database_PKG], ['libbitcoin-database >= 3.7.0']) | ||
PKG_CHECK_MODULES([bitcoin_database], [libbitcoin-database >= 3.8.0], | ||
[bitcoin_database_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-database >= 3.8.0" 2>/dev/null`" | ||
bitcoin_database_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-database >= 3.8.0" 2>/dev/null`"], | ||
[AC_MSG_ERROR([libbitcoin-database >= 3.8.0 is required but was not found.])]) | ||
AC_SUBST([bitcoin_database_PKG], ['libbitcoin-database >= 3.8.0']) | ||
AC_SUBST([bitcoin_database_CPPFLAGS], [${bitcoin_database_CFLAGS}]) | ||
AS_IF([test x${bitcoin_database_INCLUDEDIR} != "x"], | ||
[AC_SUBST([bitcoin_database_ISYS_CPPFLAGS], ["-isystem${bitcoin_database_INCLUDEDIR} ${bitcoin_database_OTHER_CFLAGS}"])], | ||
|
@@ -292,14 +292,14 @@ AS_CASE([${enable_isystem}],[yes], | |
|
||
AC_MSG_NOTICE([bitcoin_database_BUILD_CPPFLAGS : ${bitcoin_database_BUILD_CPPFLAGS}]) | ||
|
||
# Require bitcoin-consensus of at least version 3.7.0 and output ${bitcoin_consensus_CPPFLAGS/LIBS/PKG}. | ||
# Require bitcoin-consensus of at least version 3.8.0 and output ${bitcoin_consensus_CPPFLAGS/LIBS/PKG}. | ||
#------------------------------------------------------------------------------ | ||
AS_CASE([${with_consensus}], [yes], | ||
[PKG_CHECK_MODULES([bitcoin_consensus], [libbitcoin-consensus >= 3.7.0], | ||
[bitcoin_consensus_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-consensus >= 3.7.0" 2>/dev/null`" | ||
bitcoin_consensus_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-consensus >= 3.7.0" 2>/dev/null`"], | ||
[AC_MSG_ERROR([--with-consensus specified but libbitcoin-consensus >= 3.7.0 was not found.])]) | ||
AC_SUBST([bitcoin_consensus_PKG], ['libbitcoin-consensus >= 3.7.0']) | ||
[PKG_CHECK_MODULES([bitcoin_consensus], [libbitcoin-consensus >= 3.8.0], | ||
[bitcoin_consensus_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-consensus >= 3.8.0" 2>/dev/null`" | ||
bitcoin_consensus_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-consensus >= 3.8.0" 2>/dev/null`"], | ||
[AC_MSG_ERROR([--with-consensus specified but libbitcoin-consensus >= 3.8.0 was not found.])]) | ||
AC_SUBST([bitcoin_consensus_PKG], ['libbitcoin-consensus >= 3.8.0']) | ||
AC_SUBST([bitcoin_consensus_CPPFLAGS], [${bitcoin_consensus_CFLAGS}]) | ||
AS_IF([test x${bitcoin_consensus_INCLUDEDIR} != "x"], | ||
[AC_SUBST([bitcoin_consensus_ISYS_CPPFLAGS], ["-isystem${bitcoin_consensus_INCLUDEDIR} ${bitcoin_consensus_OTHER_CFLAGS}"])], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters