-
Notifications
You must be signed in to change notification settings - Fork 57
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 #361 from pmienk/version3
Regenerate with updated version to 3.8.0.
- Loading branch information
Showing
4 changed files
with
12 additions
and
12 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-network], [3.7.0], [[email protected]]) | ||
AC_INIT([libbitcoin-network], [3.8.0], [[email protected]]) | ||
|
||
# Do compilation tests. | ||
AC_LANG(C++) | ||
|
@@ -247,13 +247,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-system of at least version 3.7.0 and output ${bitcoin_system_CPPFLAGS/LIBS/PKG}. | ||
# Require bitcoin-system of at least version 3.8.0 and output ${bitcoin_system_CPPFLAGS/LIBS/PKG}. | ||
#------------------------------------------------------------------------------ | ||
PKG_CHECK_MODULES([bitcoin_system], [libbitcoin-system >= 3.7.0], | ||
[bitcoin_system_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-system >= 3.7.0" 2>/dev/null`" | ||
bitcoin_system_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-system >= 3.7.0" 2>/dev/null`"], | ||
[AC_MSG_ERROR([libbitcoin-system >= 3.7.0 is required but was not found.])]) | ||
AC_SUBST([bitcoin_system_PKG], ['libbitcoin-system >= 3.7.0']) | ||
PKG_CHECK_MODULES([bitcoin_system], [libbitcoin-system >= 3.8.0], | ||
[bitcoin_system_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libbitcoin-system >= 3.8.0" 2>/dev/null`" | ||
bitcoin_system_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libbitcoin-system >= 3.8.0" 2>/dev/null`"], | ||
[AC_MSG_ERROR([libbitcoin-system >= 3.8.0 is required but was not found.])]) | ||
AC_SUBST([bitcoin_system_PKG], ['libbitcoin-system >= 3.8.0']) | ||
AC_SUBST([bitcoin_system_CPPFLAGS], [${bitcoin_system_CFLAGS}]) | ||
AS_IF([test x${bitcoin_system_INCLUDEDIR} != "x"], | ||
[AC_SUBST([bitcoin_system_ISYS_CPPFLAGS], ["-isystem${bitcoin_system_INCLUDEDIR} ${bitcoin_system_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