@@ -258,7 +258,7 @@ AC_ARG_ENABLE([asm],
258
258
[ use_asm=yes] )
259
259
260
260
if test "x$use_asm" = xyes; then
261
- AC_DEFINE ( USE_ASM , 1 , [ Define this symbol to build in assembly routines] )
261
+ AC_DEFINE ( [ USE_ASM] , [ 1 ] , [ Define this symbol to build in assembly routines] )
262
262
fi
263
263
264
264
AC_ARG_ENABLE ( [ zmq] ,
@@ -485,7 +485,7 @@ AX_CHECK_COMPILE_FLAG([-mpclmul], [enable_clmul=yes], [], [$CXXFLAG_WERROR], [AC
485
485
486
486
if test x$enable_clmul = xyes; then
487
487
CLMUL_CXXFLAGS="-mpclmul"
488
- AC_DEFINE ( HAVE_CLMUL , 1 , [ Define this symbol if clmul instructions can be used] )
488
+ AC_DEFINE ( [ HAVE_CLMUL] , [ 1 ] , [ Define this symbol if clmul instructions can be used] )
489
489
fi
490
490
491
491
TEMP_CXXFLAGS="$CXXFLAGS"
@@ -520,7 +520,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
520
520
__m128i l = _mm_set1_epi32(0);
521
521
return _mm_extract_epi32(l, 3);
522
522
] ] ) ] ,
523
- [ AC_MSG_RESULT ( yes ) ; enable_sse41=yes; AC_DEFINE ( ENABLE_SSE41 , 1 , [ Define this symbol to build code that uses SSE4.1 intrinsics] ) ] ,
523
+ [ AC_MSG_RESULT ( yes ) ; enable_sse41=yes; AC_DEFINE ( [ ENABLE_SSE41] , [ 1 ] , [ Define this symbol to build code that uses SSE4.1 intrinsics] ) ] ,
524
524
[ AC_MSG_RESULT ( no ) ]
525
525
)
526
526
CXXFLAGS="$TEMP_CXXFLAGS"
@@ -535,7 +535,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
535
535
__m256i l = _mm256_set1_epi32(0);
536
536
return _mm256_extract_epi32(l, 7);
537
537
] ] ) ] ,
538
- [ AC_MSG_RESULT ( yes ) ; enable_avx2=yes; AC_DEFINE ( ENABLE_AVX2 , 1 , [ Define this symbol to build code that uses AVX2 intrinsics] ) ] ,
538
+ [ AC_MSG_RESULT ( yes ) ; enable_avx2=yes; AC_DEFINE ( [ ENABLE_AVX2] , [ 1 ] , [ Define this symbol to build code that uses AVX2 intrinsics] ) ] ,
539
539
[ AC_MSG_RESULT ( no ) ]
540
540
)
541
541
CXXFLAGS="$TEMP_CXXFLAGS"
@@ -552,7 +552,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
552
552
__m128i k = _mm_set1_epi32(2);
553
553
return _mm_extract_epi32(_mm_sha256rnds2_epu32(i, i, k), 0);
554
554
] ] ) ] ,
555
- [ AC_MSG_RESULT ( yes ) ; enable_shani=yes; AC_DEFINE ( ENABLE_SHANI , 1 , [ Define this symbol to build code that uses SHA-NI intrinsics] ) ] ,
555
+ [ AC_MSG_RESULT ( yes ) ; enable_shani=yes; AC_DEFINE ( [ ENABLE_SHANI] , [ 1 ] , [ Define this symbol to build code that uses SHA-NI intrinsics] ) ] ,
556
556
[ AC_MSG_RESULT ( no ) ]
557
557
)
558
558
CXXFLAGS="$TEMP_CXXFLAGS"
@@ -971,31 +971,31 @@ AC_MSG_CHECKING([for __builtin_clzl])
971
971
AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ ] ] , [ [
972
972
(void) __builtin_clzl(0);
973
973
] ] ) ] ,
974
- [ AC_MSG_RESULT ( yes ) ; have_clzl=yes; AC_DEFINE ( HAVE_BUILTIN_CLZL , 1 , [ Define this symbol if you have __builtin_clzl] ) ] ,
974
+ [ AC_MSG_RESULT ( yes ) ; have_clzl=yes; AC_DEFINE ( [ HAVE_BUILTIN_CLZL] , [ 1 ] , [ Define this symbol if you have __builtin_clzl] ) ] ,
975
975
[ AC_MSG_RESULT ( no ) ; have_clzl=no;]
976
976
)
977
977
978
978
AC_MSG_CHECKING ( [ for __builtin_clzll] )
979
979
AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ ] ] , [ [
980
980
(void) __builtin_clzll(0);
981
981
] ] ) ] ,
982
- [ AC_MSG_RESULT ( yes ) ; have_clzll=yes; AC_DEFINE ( HAVE_BUILTIN_CLZLL , 1 , [ Define this symbol if you have __builtin_clzll] ) ] ,
982
+ [ AC_MSG_RESULT ( yes ) ; have_clzll=yes; AC_DEFINE ( [ HAVE_BUILTIN_CLZLL] , [ 1 ] , [ Define this symbol if you have __builtin_clzll] ) ] ,
983
983
[ AC_MSG_RESULT ( no ) ; have_clzll=no;]
984
984
)
985
985
986
986
dnl Check for malloc_info (for memory statistics information in getmemoryinfo)
987
987
AC_MSG_CHECKING ( [ for getmemoryinfo] )
988
988
AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ #include <malloc.h>] ] ,
989
989
[ [ int f = malloc_info(0, NULL); ] ] ) ] ,
990
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_MALLOC_INFO , 1 , [ Define this symbol if you have malloc_info] ) ] ,
990
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( [ HAVE_MALLOC_INFO] , [ 1 ] , [ Define this symbol if you have malloc_info] ) ] ,
991
991
[ AC_MSG_RESULT ( no ) ]
992
992
)
993
993
994
994
dnl Check for mallopt(M_ARENA_MAX) (to set glibc arenas)
995
995
AC_MSG_CHECKING ( [ for mallopt M_ARENA_MAX] )
996
996
AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ #include <malloc.h>] ] ,
997
997
[ [ mallopt(M_ARENA_MAX, 1); ] ] ) ] ,
998
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_MALLOPT_ARENA_MAX , 1 , [ Define this symbol if you have mallopt with M_ARENA_MAX] ) ] ,
998
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( [ HAVE_MALLOPT_ARENA_MAX] , [ 1 ] , [ Define this symbol if you have mallopt with M_ARENA_MAX] ) ] ,
999
999
[ AC_MSG_RESULT ( no ) ]
1000
1000
)
1001
1001
@@ -1011,7 +1011,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1011
1011
#endif // __linux__
1012
1012
#include <fcntl.h>] ] ,
1013
1013
[ [ int f = posix_fallocate(0, 0, 0); ] ] ) ] ,
1014
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_POSIX_FALLOCATE , 1 , [ Define this symbol if you have posix_fallocate] ) ] ,
1014
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( [ HAVE_POSIX_FALLOCATE] , [ 1 ] , [ Define this symbol if you have posix_fallocate] ) ] ,
1015
1015
[ AC_MSG_RESULT ( no ) ]
1016
1016
)
1017
1017
@@ -1021,7 +1021,7 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([
1021
1021
int main(){}
1022
1022
] ) ] ,
1023
1023
[
1024
- AC_DEFINE ( HAVE_DEFAULT_VISIBILITY_ATTRIBUTE , 1 , [ Define if the visibility attribute is supported.] )
1024
+ AC_DEFINE ( [ HAVE_DEFAULT_VISIBILITY_ATTRIBUTE] , [ 1 ] , [ Define if the visibility attribute is supported.] )
1025
1025
AC_MSG_RESULT ( yes )
1026
1026
] ,
1027
1027
[
@@ -1038,7 +1038,7 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([
1038
1038
int main(){}
1039
1039
] ) ] ,
1040
1040
[
1041
- AC_DEFINE ( HAVE_DLLEXPORT_ATTRIBUTE , 1 , [ Define if the dllexport attribute is supported.] )
1041
+ AC_DEFINE ( [ HAVE_DLLEXPORT_ATTRIBUTE] , [ 1 ] , [ Define if the dllexport attribute is supported.] )
1042
1042
AC_MSG_RESULT ( yes )
1043
1043
] ,
1044
1044
[ AC_MSG_RESULT ( no ) ]
@@ -1074,7 +1074,7 @@ if test "x$use_thread_local" = xyes || test "x$use_thread_local" = xauto; then
1074
1074
AC_MSG_RESULT ( no )
1075
1075
;;
1076
1076
*)
1077
- AC_DEFINE ( HAVE_THREAD_LOCAL , 1 , [ Define if thread_local is supported.] )
1077
+ AC_DEFINE ( [ HAVE_THREAD_LOCAL] , [ 1 ] , [ Define if thread_local is supported.] )
1078
1078
AC_MSG_RESULT ( yes )
1079
1079
;;
1080
1080
esac
@@ -1091,7 +1091,7 @@ dnl fail if neither are available.
1091
1091
AC_MSG_CHECKING ( [ for gmtime_r] )
1092
1092
AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ #include <ctime>] ] ,
1093
1093
[ [ gmtime_r((const time_t *) nullptr, (struct tm *) nullptr); ] ] ) ] ,
1094
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_GMTIME_R , 1 , [ Define this symbol if gmtime_r is available] ) ] ,
1094
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( [ HAVE_GMTIME_R] , [ 1 ] , [ Define this symbol if gmtime_r is available] ) ] ,
1095
1095
[ AC_MSG_RESULT ( no ) ;
1096
1096
AC_MSG_CHECKING ( [ for gmtime_s] ) ;
1097
1097
AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ #include <ctime>] ] ,
@@ -1108,22 +1108,22 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>
1108
1108
#include <sys/syscall.h>
1109
1109
#include <linux/random.h>] ] ,
1110
1110
[ [ syscall(SYS_getrandom, nullptr, 32, 0); ] ] ) ] ,
1111
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_SYS_GETRANDOM , 1 , [ Define this symbol if the Linux getrandom system call is available] ) ] ,
1111
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( [ HAVE_SYS_GETRANDOM] , [ 1 ] , [ Define this symbol if the Linux getrandom system call is available] ) ] ,
1112
1112
[ AC_MSG_RESULT ( no ) ]
1113
1113
)
1114
1114
1115
1115
AC_MSG_CHECKING ( [ for getentropy] )
1116
1116
AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ #include <unistd.h>] ] ,
1117
1117
[ [ getentropy(nullptr, 32) ] ] ) ] ,
1118
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_GETENTROPY , 1 , [ Define this symbol if the BSD getentropy system call is available] ) ] ,
1118
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( [ HAVE_GETENTROPY] , [ 1 ] , [ Define this symbol if the BSD getentropy system call is available] ) ] ,
1119
1119
[ AC_MSG_RESULT ( no ) ]
1120
1120
)
1121
1121
1122
1122
AC_MSG_CHECKING ( [ for getentropy via random.h] )
1123
1123
AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ #include <unistd.h>
1124
1124
#include <sys/random.h>] ] ,
1125
1125
[ [ getentropy(nullptr, 32) ] ] ) ] ,
1126
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_GETENTROPY_RAND , 1 , [ Define this symbol if the BSD getentropy system call is available with sys/random.h] ) ] ,
1126
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( [ HAVE_GETENTROPY_RAND] , [ 1 ] , [ Define this symbol if the BSD getentropy system call is available with sys/random.h] ) ] ,
1127
1127
[ AC_MSG_RESULT ( no ) ]
1128
1128
)
1129
1129
@@ -1134,7 +1134,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
1134
1134
#error "Don't use sysctl on Linux, it's deprecated even when it works"
1135
1135
#endif
1136
1136
sysctl(nullptr, 2, nullptr, nullptr, nullptr, 0); ] ] ) ] ,
1137
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_SYSCTL , 1 , [ Define this symbol if the BSD sysctl() is available] ) ] ,
1137
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( [ HAVE_SYSCTL] , [ 1 ] , [ Define this symbol if the BSD sysctl() is available] ) ] ,
1138
1138
[ AC_MSG_RESULT ( no ) ]
1139
1139
)
1140
1140
@@ -1146,15 +1146,15 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
1146
1146
#endif
1147
1147
static int name[ 2] = {CTL_KERN, KERN_ARND};
1148
1148
sysctl(name, 2, nullptr, nullptr, nullptr, 0); ] ] ) ] ,
1149
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( HAVE_SYSCTL_ARND , 1 , [ Define this symbol if the BSD sysctl(KERN_ARND) is available] ) ] ,
1149
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( [ HAVE_SYSCTL_ARND] , [ 1 ] , [ Define this symbol if the BSD sysctl(KERN_ARND) is available] ) ] ,
1150
1150
[ AC_MSG_RESULT ( no ) ]
1151
1151
)
1152
1152
1153
1153
AC_MSG_CHECKING ( [ for if type char equals int8_t] )
1154
1154
AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [ #include <stdint.h>
1155
1155
#include <type_traits>] ] ,
1156
1156
[ [ static_assert(std::is_same<int8_t, char>::value, ""); ] ] ) ] ,
1157
- [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( CHAR_EQUALS_INT8 , 1 , [ Define this symbol if type char equals int8_t] ) ] ,
1157
+ [ AC_MSG_RESULT ( yes ) ; AC_DEFINE ( [ CHAR_EQUALS_INT8] , [ 1 ] , [ Define this symbol if type char equals int8_t] ) ] ,
1158
1158
[ AC_MSG_RESULT ( no ) ]
1159
1159
)
1160
1160
@@ -1208,7 +1208,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1208
1208
] ] , [ [
1209
1209
getauxval(AT_HWCAP);
1210
1210
] ] ) ] ,
1211
- [ AC_MSG_RESULT ( yes ) ; HAVE_STRONG_GETAUXVAL=1; AC_DEFINE ( HAVE_STRONG_GETAUXVAL , 1 , [ Define this symbol to build code that uses getauxval)] ) ] ,
1211
+ [ AC_MSG_RESULT ( yes ) ; HAVE_STRONG_GETAUXVAL=1; AC_DEFINE ( [ HAVE_STRONG_GETAUXVAL] , [ 1 ] , [ Define this symbol to build code that uses getauxval)] ) ] ,
1212
1212
[ AC_MSG_RESULT ( no ) ; HAVE_STRONG_GETAUXVAL=0 ]
1213
1213
)
1214
1214
@@ -1234,7 +1234,7 @@ AC_LINK_IFELSE(
1234
1234
)
1235
1235
1236
1236
if test "x$have_any_system" != "xno"; then
1237
- AC_DEFINE ( HAVE_SYSTEM , 1 , Define to 1 if std::system or ::wsystem is available. )
1237
+ AC_DEFINE ( [ HAVE_SYSTEM] , [ 1 ] , [ Define to 1 if std::system or ::wsystem is available.] )
1238
1238
fi
1239
1239
1240
1240
dnl SUPPRESSED_CPPFLAGS=SUPPRESS_WARNINGS([$SOME_CPPFLAGS])
@@ -1412,7 +1412,7 @@ if test x$use_boost = xyes; then
1412
1412
fi
1413
1413
1414
1414
if test "x$use_external_signer" != xno; then
1415
- AC_DEFINE ( [ ENABLE_EXTERNAL_SIGNER] ,, [ define if external signer support is enabled] )
1415
+ AC_DEFINE ( [ ENABLE_EXTERNAL_SIGNER] , [ ] , [ Define if external signer support is enabled] )
1416
1416
fi
1417
1417
AM_CONDITIONAL([ ENABLE_EXTERNAL_SIGNER] , [ test "x$use_external_signer" = "xyes"] )
1418
1418
@@ -1434,7 +1434,7 @@ if test "x$seccomp_found" != "xno"; then
1434
1434
] ] ) ] ,[
1435
1435
AC_MSG_RESULT ( yes )
1436
1436
seccomp_found="yes"
1437
- AC_DEFINE ( USE_SYSCALL_SANDBOX , 1 , [ Define this symbol to build with syscall sandbox support.] )
1437
+ AC_DEFINE ( [ USE_SYSCALL_SANDBOX] , [ 1 ] , [ Define this symbol to build with syscall sandbox support.] )
1438
1438
] ,[
1439
1439
AC_MSG_RESULT ( no )
1440
1440
seccomp_found="no"
@@ -1589,7 +1589,7 @@ AC_MSG_RESULT($build_bitcoin_util)
1589
1589
AC_MSG_CHECKING ( [ whether to build libraries] )
1590
1590
AM_CONDITIONAL([ BUILD_BITCOIN_LIBS] , [ test x$build_bitcoin_libs = xyes] )
1591
1591
if test x$build_bitcoin_libs = xyes; then
1592
- AC_DEFINE ( HAVE_CONSENSUS_LIB , 1 , [ Define this symbol if the consensus lib has been built] )
1592
+ AC_DEFINE ( [ HAVE_CONSENSUS_LIB] , [ 1 ] , [ Define this symbol if the consensus lib has been built] )
1593
1593
AC_CONFIG_FILES ( [ libbitcoinconsensus.pc:libbitcoinconsensus.pc.in] )
1594
1594
fi
1595
1595
AC_MSG_RESULT ( $build_bitcoin_libs )
@@ -1689,7 +1689,7 @@ if test x$bitcoin_enable_qt != xno; then
1689
1689
dnl enable dbus support
1690
1690
AC_MSG_CHECKING ( [ whether to build GUI with support for D-Bus] )
1691
1691
if test x$bitcoin_enable_qt_dbus != xno; then
1692
- AC_DEFINE ( [ USE_DBUS] ,[ 1] ,[ Define if dbus support should be compiled in] )
1692
+ AC_DEFINE ( [ USE_DBUS] , [ 1] , [ Define if dbus support should be compiled in] )
1693
1693
fi
1694
1694
AC_MSG_RESULT ( $bitcoin_enable_qt_dbus )
1695
1695
@@ -1702,7 +1702,7 @@ if test x$bitcoin_enable_qt != xno; then
1702
1702
use_qr=no
1703
1703
else
1704
1704
if test x$use_qr != xno; then
1705
- AC_DEFINE ( [ USE_QRCODE] ,[ 1] ,[ Define if QR support should be compiled in] )
1705
+ AC_DEFINE ( [ USE_QRCODE] , [ 1] , [ Define if QR support should be compiled in] )
1706
1706
use_qr=yes
1707
1707
fi
1708
1708
fi
@@ -1783,15 +1783,15 @@ dnl for minisketch
1783
1783
AM_CONDITIONAL([ ENABLE_CLMUL] ,[ test x$enable_clmul = xyes] )
1784
1784
AM_CONDITIONAL([ HAVE_CLZ] ,[ test x$have_clzl$have_clzll = xyesyes] )
1785
1785
1786
- AC_DEFINE ( CLIENT_VERSION_MAJOR , _CLIENT_VERSION_MAJOR , [ Major version] )
1787
- AC_DEFINE ( CLIENT_VERSION_MINOR , _CLIENT_VERSION_MINOR , [ Minor version] )
1788
- AC_DEFINE ( CLIENT_VERSION_BUILD , _CLIENT_VERSION_BUILD , [ Version Build] )
1789
- AC_DEFINE ( CLIENT_VERSION_IS_RELEASE , _CLIENT_VERSION_IS_RELEASE , [ Version is release] )
1790
- AC_DEFINE ( COPYRIGHT_YEAR , _COPYRIGHT_YEAR , [ Copyright year] )
1791
- AC_DEFINE ( COPYRIGHT_HOLDERS , "_COPYRIGHT_HOLDERS" , [ Copyright holder(s) before %s replacement] )
1792
- AC_DEFINE ( COPYRIGHT_HOLDERS_SUBSTITUTION , "_COPYRIGHT_HOLDERS_SUBSTITUTION" , [ Replacement for %s in copyright holders string] )
1786
+ AC_DEFINE ( [ CLIENT_VERSION_MAJOR] , [ _CLIENT_VERSION_MAJOR] , [ Major version] )
1787
+ AC_DEFINE ( [ CLIENT_VERSION_MINOR] , [ _CLIENT_VERSION_MINOR] , [ Minor version] )
1788
+ AC_DEFINE ( [ CLIENT_VERSION_BUILD] , [ _CLIENT_VERSION_BUILD] , [ Version Build] )
1789
+ AC_DEFINE ( [ CLIENT_VERSION_IS_RELEASE] , [ _CLIENT_VERSION_IS_RELEASE] , [ Version is release] )
1790
+ AC_DEFINE ( [ COPYRIGHT_YEAR] , [ _COPYRIGHT_YEAR] , [ Copyright year] )
1791
+ AC_DEFINE ( [ COPYRIGHT_HOLDERS] , [ "_COPYRIGHT_HOLDERS"] , [ Copyright holder(s) before %s replacement] )
1792
+ AC_DEFINE ( [ COPYRIGHT_HOLDERS_SUBSTITUTION] , [ "_COPYRIGHT_HOLDERS_SUBSTITUTION"] , [ Replacement for %s in copyright holders string] )
1793
1793
define ( _COPYRIGHT_HOLDERS_FINAL , [ patsubst(_COPYRIGHT_HOLDERS, [ %s] , [ _COPYRIGHT_HOLDERS_SUBSTITUTION] )] )
1794
- AC_DEFINE ( COPYRIGHT_HOLDERS_FINAL , "_COPYRIGHT_HOLDERS_FINAL" , [ Copyright holder(s)] )
1794
+ AC_DEFINE ( [ COPYRIGHT_HOLDERS_FINAL] , [ "_COPYRIGHT_HOLDERS_FINAL"] , [ Copyright holder(s)] )
1795
1795
AC_SUBST ( CLIENT_VERSION_MAJOR , _CLIENT_VERSION_MAJOR )
1796
1796
AC_SUBST ( CLIENT_VERSION_MINOR , _CLIENT_VERSION_MINOR )
1797
1797
AC_SUBST ( CLIENT_VERSION_BUILD , _CLIENT_VERSION_BUILD )
0 commit comments