From 91326fa44c678591b9c16fa351d4cd07c6509846 Mon Sep 17 00:00:00 2001 From: Phillip Mienk Date: Tue, 9 May 2023 17:04:06 -0700 Subject: [PATCH 1/3] Regenerate artifacts. --- .github/workflows/ci.yml | 46 +++++++-- builds/cmake/CMakeLists.txt | 65 ++++++++++-- configure.ac | 194 ++++++++++++++++++------------------ 3 files changed, 192 insertions(+), 113 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 483ee72b..4fb894ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,7 @@ jobs: zmq: "--build-zmq" cc: "clang" flags: "-Os -fPIE" + options: "--enable-isystem" packager: "apt" packages: "" @@ -44,6 +45,7 @@ jobs: zmq: "--build-zmq" cc: "clang" flags: "-Os -fPIE" + options: "--enable-isystem" packager: "apt" packages: "" @@ -59,6 +61,7 @@ jobs: zmq: "--build-zmq" cc: "gcc" flags: "-Os -fPIE" + options: "--enable-isystem" packager: "apt" packages: "" @@ -74,6 +77,7 @@ jobs: zmq: "--build-zmq" cc: "gcc" flags: "-Og -fPIE" + options: "--enable-isystem" packager: "apt" packages: "" @@ -89,6 +93,7 @@ jobs: zmq: "--build-zmq" cc: "clang" flags: "-Os -fPIE" + options: "--enable-isystem" packager: "brew" packages: "" @@ -104,6 +109,7 @@ jobs: zmq: "--build-zmq" cc: "clang" flags: "-Os -fvisibility=hidden -fPIE" + options: "--enable-isystem" packager: "brew" packages: "" @@ -155,11 +161,16 @@ jobs: echo "LDFLAGS=-Wl,-rpath,$WORKSPACE_SUBPATH/prefix/lib" >> $GITHUB_ENV fi + - name: Display CPU details + if: ${{ (runner.os == 'Linux') }} + shell: bash + run: | + lscpu + - name: Execute install.sh run: > ./install.sh - --enable-isystem - --build-dir=$LIBBITCOIN_SRC_PATH + --build-dir=$LIBBITCOIN_SRC_PATH ${{ matrix.options }} --prefix=$LIBBITCOIN_SRC_PATH/prefix ${{ env.LINKAGE }} ${{ env.ASSERT_NDEBUG }} @@ -214,11 +225,11 @@ jobs: run: | cat ${{ github.workspace }}/build/build-*/bootstrap.log + - name: Failure display otool output if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | otool -L ${{ github.workspace }}/test/.libs/libbitcoin-server-test - - name: Failure display DYLD_PRINT_LIBRARIES if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | @@ -249,6 +260,7 @@ jobs: zmq: "--build-zmq" cc: "clang" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -264,6 +276,7 @@ jobs: zmq: "--build-zmq" cc: "clang" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -279,6 +292,7 @@ jobs: zmq: "--build-zmq" cc: "gcc" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -294,6 +308,7 @@ jobs: zmq: "--build-zmq" cc: "gcc" flags: "-Og -fPIE" + options: "" packager: "apt" packages: "" @@ -309,6 +324,7 @@ jobs: zmq: "--build-zmq" cc: "clang" flags: "-Os -fPIE" + options: "" packager: "brew" packages: "" @@ -324,6 +340,7 @@ jobs: zmq: "--build-zmq" cc: "clang" flags: "-Os -fvisibility=hidden -fPIE" + options: "" packager: "brew" packages: "" @@ -378,10 +395,16 @@ jobs: echo "LDFLAGS=-Wl,-rpath,$WORKSPACE_SUBPATH/prefix/lib" >> $GITHUB_ENV fi + - name: Display CPU details + if: ${{ (runner.os == 'Linux') }} + shell: bash + run: | + lscpu + - name: Execute install-cmake.sh run: > ./install-cmake.sh - --build-dir=$LIBBITCOIN_SRC_PATH + --build-dir=$LIBBITCOIN_SRC_PATH ${{ matrix.options }} --prefix=$LIBBITCOIN_SRC_PATH/prefix ${{ env.LINKAGE }} ${{ env.ASSERT_NDEBUG }} @@ -436,11 +459,11 @@ jobs: run: | cat ${{ github.workspace }}/build/build-*/bootstrap.log + - name: Failure display otool output if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | otool -L ${{ github.workspace }}/test/.libs/libbitcoin-server-test - - name: Failure display DYLD_PRINT_LIBRARIES if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | @@ -482,6 +505,7 @@ jobs: zmq: "--build-zmq" cc: "clang" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -498,6 +522,7 @@ jobs: zmq: "--build-zmq" cc: "clang" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -514,6 +539,7 @@ jobs: zmq: "--build-zmq" cc: "gcc" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -568,10 +594,16 @@ jobs: echo "LDFLAGS=-Wl,-rpath,$WORKSPACE_SUBPATH/prefix/${{ matrix.preset }}/lib" >> $GITHUB_ENV fi + - name: Display CPU details + if: ${{ (runner.os == 'Linux') }} + shell: bash + run: | + lscpu + - name: Execute install-cmakepresets.sh run: > ./install-cmakepresets.sh - --build-dir=$LIBBITCOIN_SRC_PATH + --build-dir=$LIBBITCOIN_SRC_PATH ${{ matrix.options }} --prefix=$LIBBITCOIN_SRC_PATH/prefix/${{ matrix.preset }} --preset=${{ matrix.preset }} ${{ env.LINKAGE }} @@ -627,11 +659,11 @@ jobs: run: | cat ${{ github.workspace }}/build/build-*/bootstrap.log + - name: Failure display otool output if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | otool -L ${{ github.workspace }}/test/.libs/libbitcoin-server-test - - name: Failure display DYLD_PRINT_LIBRARIES if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | diff --git a/builds/cmake/CMakeLists.txt b/builds/cmake/CMakeLists.txt index bfa98b68..99c998b1 100644 --- a/builds/cmake/CMakeLists.txt +++ b/builds/cmake/CMakeLists.txt @@ -16,6 +16,8 @@ enable_testing() list( APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/modules" ) include(CheckIncludeFiles) include(CheckSymbolExists) +include(CheckCXXCompilerFlag) +include(CheckCXXSourceCompiles) set_property(GLOBAL PROPERTY USE_FOLDERS ON) @@ -40,32 +42,77 @@ set( CMAKE_CXX_STANDARD_REQUIRED ON ) # Add compiler options #------------------------------------------------------------------------------ # Warn on all stuff. -add_compile_options( "-Wall" ) +check_cxx_compiler_flag( "-Wall" HAS_FLAG_WALL ) +if ( HAS_FLAG_WALL ) + add_compile_options( "-Wall" ) +else() + message( FATAL_ERROR "Compiler does not support -Wall" ) +endif() # Warn on extra stuff. -add_compile_options( "-Wextra" ) +check_cxx_compiler_flag( "-Wextra" HAS_FLAG_WEXTRA ) +if ( HAS_FLAG_WEXTRA ) + add_compile_options( "-Wextra" ) +else() + message( FATAL_ERROR "Compiler does not support -Wextra" ) +endif() # Be really annoying. -add_compile_options( "-Wpedantic" ) +check_cxx_compiler_flag( "-Wpedantic" HAS_FLAG_WPEDANTIC ) +if ( HAS_FLAG_WPEDANTIC ) + add_compile_options( "-Wpedantic" ) +else() + message( FATAL_ERROR "Compiler does not support -Wpedantic" ) +endif() # Disallow warning on style order of declarations. -add_compile_options( "-Wno-reorder" ) +check_cxx_compiler_flag( "-Wno-reorder" HAS_FLAG_WNO-REORDER ) +if ( HAS_FLAG_WNO-REORDER ) + add_compile_options( "-Wno-reorder" ) +else() + message( FATAL_ERROR "Compiler does not support -Wno-reorder" ) +endif() # Suppress warning for incomplete field initialization. -add_compile_options( "-Wno-missing-field-initializers" ) +check_cxx_compiler_flag( "-Wno-missing-field-initializers" HAS_FLAG_WNO-MISSING-FIELD-INITIALIZERS ) +if ( HAS_FLAG_WNO-MISSING-FIELD-INITIALIZERS ) + add_compile_options( "-Wno-missing-field-initializers" ) +else() + message( FATAL_ERROR "Compiler does not support -Wno-missing-field-initializers" ) +endif() # Conform to style. -add_compile_options( "-Wno-missing-braces" ) +check_cxx_compiler_flag( "-Wno-missing-braces" HAS_FLAG_WNO-MISSING-BRACES ) +if ( HAS_FLAG_WNO-MISSING-BRACES ) + add_compile_options( "-Wno-missing-braces" ) +else() + message( FATAL_ERROR "Compiler does not support -Wno-missing-braces" ) +endif() # Ignore comments within comments or commenting of backslash extended lines. -add_compile_options( "-Wno-comment" ) +check_cxx_compiler_flag( "-Wno-comment" HAS_FLAG_WNO-COMMENT ) +if ( HAS_FLAG_WNO-COMMENT ) + add_compile_options( "-Wno-comment" ) +else() + message( FATAL_ERROR "Compiler does not support -Wno-comment" ) +endif() # Suppress warning for copy of implicitly generated copy constructor. -add_compile_options( "-Wno-deprecated-copy" ) +check_cxx_compiler_flag( "-Wno-deprecated-copy" HAS_FLAG_WNO-DEPRECATED-COPY ) +if ( HAS_FLAG_WNO-DEPRECATED-COPY ) + add_compile_options( "-Wno-deprecated-copy" ) +else() + message( FATAL_ERROR "Compiler does not support -Wno-deprecated-copy" ) +endif() # Conflict in stdlib under clang. if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - add_compile_options( "-Wno-mismatched-tags" ) + check_cxx_compiler_flag( "-Wno-mismatched-tags" HAS_FLAG_WNO-MISMATCHED-TAGS ) + if ( HAS_FLAG_WNO-MISMATCHED-TAGS ) + add_compile_options( "-Wno-mismatched-tags" ) + else() + message( FATAL_ERROR "Compiler does not support -Wno-mismatched-tags" ) + endif() endif() # Implement -Dbash-completiondir and output ${bash-completiondir} and declare bash-completiondir. diff --git a/configure.ac b/configure.ac index 3da6dffe..b931ebc0 100644 --- a/configure.ac +++ b/configure.ac @@ -147,6 +147,103 @@ AC_ARG_ENABLE([isystem], AC_MSG_RESULT([$enable_isystem]) +# Set flags. +#============================================================================== +# Require c++11 for all c++ products. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-std=c++11], + [CXXFLAGS="$CXXFLAGS -std=c++11"])]) + +# Warn on all stuff. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wall], + [CFLAGS="$CFLAGS -Wall"])]) + +# Warn on all stuff. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wall], + [CXXFLAGS="$CXXFLAGS -Wall"])]) + +# Warn on extra stuff. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wextra], + [CFLAGS="$CFLAGS -Wextra"])]) + +# Warn on extra stuff. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wextra], + [CXXFLAGS="$CXXFLAGS -Wextra"])]) + +# Be really annoying. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wpedantic], + [CFLAGS="$CFLAGS -Wpedantic"], + [AX_CHECK_COMPILE_FLAG([-pedantic], + [CFLAGS="$CFLAGS -pedantic"])])]) + +# Be really annoying. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wpedantic], + [CXXFLAGS="$CXXFLAGS -Wpedantic"], + [AX_CHECK_COMPILE_FLAG([-pedantic], + [CXXFLAGS="$CXXFLAGS -pedantic"])])]) + +# Disallow warning on style order of declarations. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wno-reorder], + [CXXFLAGS="$CXXFLAGS -Wno-reorder"])]) + +# Suppress warning for incomplete field initialization. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wno-missing-field-initializers], + [CXXFLAGS="$CXXFLAGS -Wno-missing-field-initializers"])]) + +# Conform to style. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wno-missing-braces], + [CXXFLAGS="$CXXFLAGS -Wno-missing-braces"])]) + +# Ignore comments within comments or commenting of backslash extended lines. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wno-comment], + [CXXFLAGS="$CXXFLAGS -Wno-comment"])]) + +# Suppress warning for copy of implicitly generated copy constructor. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wno-deprecated-copy], + [CXXFLAGS="$CXXFLAGS -Wno-deprecated-copy"])]) + +# Conflict in stdlib under clang. Enabled in clang only. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*clang*], + [AX_CHECK_COMPILE_FLAG([-Wno-mismatched-tags], + [CXXFLAGS="$CXXFLAGS -Wno-mismatched-tags"])]) + +# Protect stack. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_LINK_FLAG([-fstack-protector], + [LDFLAGS="$LDFLAGS -fstack-protector"])]) + +# Protect stack comprehensively. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_LINK_FLAG([-fstack-protector-all], + [LDFLAGS="$LDFLAGS -fstack-protector-all"])]) + + # Check dependencies. #============================================================================== # Require Boost of at least version 1.72.0 and output ${boost_CPPFLAGS/LDFLAGS}. @@ -248,103 +345,6 @@ AS_CASE([${enable_isystem}],[yes], AC_MSG_NOTICE([bitcoin_protocol_BUILD_CPPFLAGS : ${bitcoin_protocol_BUILD_CPPFLAGS}]) -# Set flags. -#============================================================================== -# Require c++11 for all c++ products. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-std=c++11], - [CXXFLAGS="$CXXFLAGS -std=c++11"])]) - -# Warn on all stuff. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wall], - [CFLAGS="$CFLAGS -Wall"])]) - -# Warn on all stuff. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wall], - [CXXFLAGS="$CXXFLAGS -Wall"])]) - -# Warn on extra stuff. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wextra], - [CFLAGS="$CFLAGS -Wextra"])]) - -# Warn on extra stuff. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wextra], - [CXXFLAGS="$CXXFLAGS -Wextra"])]) - -# Be really annoying. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wpedantic], - [CFLAGS="$CFLAGS -Wpedantic"], - [AX_CHECK_COMPILE_FLAG([-pedantic], - [CFLAGS="$CFLAGS -pedantic"])])]) - -# Be really annoying. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wpedantic], - [CXXFLAGS="$CXXFLAGS -Wpedantic"], - [AX_CHECK_COMPILE_FLAG([-pedantic], - [CXXFLAGS="$CXXFLAGS -pedantic"])])]) - -# Disallow warning on style order of declarations. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wno-reorder], - [CXXFLAGS="$CXXFLAGS -Wno-reorder"])]) - -# Suppress warning for incomplete field initialization. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wno-missing-field-initializers], - [CXXFLAGS="$CXXFLAGS -Wno-missing-field-initializers"])]) - -# Conform to style. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wno-missing-braces], - [CXXFLAGS="$CXXFLAGS -Wno-missing-braces"])]) - -# Ignore comments within comments or commenting of backslash extended lines. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wno-comment], - [CXXFLAGS="$CXXFLAGS -Wno-comment"])]) - -# Suppress warning for copy of implicitly generated copy constructor. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wno-deprecated-copy], - [CXXFLAGS="$CXXFLAGS -Wno-deprecated-copy"])]) - -# Conflict in stdlib under clang. Enabled in clang only. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*clang*], - [AX_CHECK_COMPILE_FLAG([-Wno-mismatched-tags], - [CXXFLAGS="$CXXFLAGS -Wno-mismatched-tags"])]) - -# Protect stack. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_LINK_FLAG([-fstack-protector], - [LDFLAGS="$LDFLAGS -fstack-protector"])]) - -# Protect stack comprehensively. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_LINK_FLAG([-fstack-protector-all], - [LDFLAGS="$LDFLAGS -fstack-protector-all"])]) - - # Process outputs into templates. #============================================================================== AC_CONFIG_FILES([Makefile libbitcoin-server.pc]) From 0af6b653cbb3867b6c21fa5cc30312221ba8d1d9 Mon Sep 17 00:00:00 2001 From: Phillip Mienk Date: Wed, 16 Aug 2023 17:27:35 -0700 Subject: [PATCH 2/3] Update copyright year range. --- .github/workflows/ci.yml | 2 +- Makefile.am | 2 +- autogen.sh | 2 +- build.cmd | 2 +- builds/cmake/CMakeLists.txt | 2 +- builds/cmake/modules/FindBash-Completion.cmake | 2 +- builds/cmake/modules/FindBitcoin-Node.cmake | 2 +- builds/cmake/modules/FindBitcoin-Protocol.cmake | 2 +- builds/msvc/debug.natvis | 2 +- builds/msvc/vs2022/bs/bs.vcxproj | 2 +- builds/msvc/vs2022/bs/bs.vcxproj.filters | 2 +- builds/msvc/vs2022/bs/packages.config | 2 +- .../libbitcoin-server-test/libbitcoin-server-test.vcxproj | 2 +- .../libbitcoin-server-test.vcxproj.filters | 2 +- builds/msvc/vs2022/libbitcoin-server-test/packages.config | 2 +- builds/msvc/vs2022/libbitcoin-server/libbitcoin-server.vcxproj | 2 +- .../vs2022/libbitcoin-server/libbitcoin-server.vcxproj.filters | 2 +- builds/msvc/vs2022/libbitcoin-server/packages.config | 2 +- configure.ac | 2 +- console/executor.cpp | 2 +- console/executor.hpp | 2 +- console/main.cpp | 2 +- include/bitcoin/server.hpp | 2 +- include/bitcoin/server/configuration.hpp | 2 +- include/bitcoin/server/define.hpp | 2 +- include/bitcoin/server/interface/blockchain.hpp | 2 +- include/bitcoin/server/interface/subscribe.hpp | 2 +- include/bitcoin/server/interface/transaction_pool.hpp | 2 +- include/bitcoin/server/interface/unsubscribe.hpp | 2 +- include/bitcoin/server/messages/message.hpp | 2 +- include/bitcoin/server/messages/route.hpp | 2 +- include/bitcoin/server/messages/subscription.hpp | 2 +- include/bitcoin/server/parser.hpp | 2 +- include/bitcoin/server/server_node.hpp | 2 +- include/bitcoin/server/services/block_service.hpp | 2 +- include/bitcoin/server/services/heartbeat_service.hpp | 2 +- include/bitcoin/server/services/query_service.hpp | 2 +- include/bitcoin/server/services/transaction_service.hpp | 2 +- include/bitcoin/server/settings.hpp | 2 +- include/bitcoin/server/version.hpp | 2 +- include/bitcoin/server/workers/authenticator.hpp | 2 +- include/bitcoin/server/workers/notification_worker.hpp | 2 +- include/bitcoin/server/workers/query_worker.hpp | 2 +- install-cmake.sh | 2 +- install-cmakepresets.sh | 2 +- install.sh | 2 +- libbitcoin-server-test_runner.sh | 2 +- libbitcoin-server.pc.in | 2 +- src/configuration.cpp | 2 +- src/interface/blockchain.cpp | 2 +- src/interface/subscribe.cpp | 2 +- src/interface/transaction_pool.cpp | 2 +- src/interface/unsubscribe.cpp | 2 +- src/messages/message.cpp | 2 +- src/messages/route.cpp | 2 +- src/messages/subscription.cpp | 2 +- src/parser.cpp | 2 +- src/server_node.cpp | 2 +- src/services/block_service.cpp | 2 +- src/services/heartbeat_service.cpp | 2 +- src/services/query_service.cpp | 2 +- src/services/transaction_service.cpp | 2 +- src/settings.cpp | 2 +- src/workers/authenticator.cpp | 2 +- src/workers/notification_worker.cpp | 2 +- src/workers/query_worker.cpp | 2 +- test/main.cpp | 2 +- test/server.cpp | 2 +- 68 files changed, 68 insertions(+), 68 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fb894ce..faa57cc3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-server developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-server developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/Makefile.am b/Makefile.am index badd9484..2a582620 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-server developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-server developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/autogen.sh b/autogen.sh index c4be74d6..ae0d9e09 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,6 +1,6 @@ #!/bin/sh ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-server developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-server developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/build.cmd b/build.cmd index 806c7468..75416f29 100644 --- a/build.cmd +++ b/build.cmd @@ -1,5 +1,5 @@ REM ########################################################################### -REM # Copyright (c) 2014-2020 libbitcoin-server developers (see COPYING). +REM # Copyright (c) 2014-2023 libbitcoin-server developers (see COPYING). REM # REM # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY REM # diff --git a/builds/cmake/CMakeLists.txt b/builds/cmake/CMakeLists.txt index 99c998b1..57b4c628 100644 --- a/builds/cmake/CMakeLists.txt +++ b/builds/cmake/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-server developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-server developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/cmake/modules/FindBash-Completion.cmake b/builds/cmake/modules/FindBash-Completion.cmake index c00e1d1b..2cc13f1f 100644 --- a/builds/cmake/modules/FindBash-Completion.cmake +++ b/builds/cmake/modules/FindBash-Completion.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-server developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-server developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/cmake/modules/FindBitcoin-Node.cmake b/builds/cmake/modules/FindBitcoin-Node.cmake index 8d0d2a97..88b3a0ba 100644 --- a/builds/cmake/modules/FindBitcoin-Node.cmake +++ b/builds/cmake/modules/FindBitcoin-Node.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-server developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-server developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/cmake/modules/FindBitcoin-Protocol.cmake b/builds/cmake/modules/FindBitcoin-Protocol.cmake index 6fdbc830..b346b742 100644 --- a/builds/cmake/modules/FindBitcoin-Protocol.cmake +++ b/builds/cmake/modules/FindBitcoin-Protocol.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-server developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-server developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/msvc/debug.natvis b/builds/msvc/debug.natvis index 22efd888..7abe9b29 100644 --- a/builds/msvc/debug.natvis +++ b/builds/msvc/debug.natvis @@ -1,6 +1,6 @@