From 37c9abdc4375ce1a1b9186a63e8c133fbb7feebd Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 5 Aug 2024 14:46:12 +0100 Subject: [PATCH 1/2] build: remove check for __attribute__((visibility.. --- configure.ac | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/configure.ac b/configure.ac index 439bb508e7c..d761911573a 100644 --- a/configure.ac +++ b/configure.ac @@ -943,23 +943,6 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ [ AC_MSG_RESULT([no])] ) -AC_MSG_CHECKING([for default visibility attribute]) -AC_COMPILE_IFELSE([AC_LANG_SOURCE([ - int foo(void) __attribute__((visibility("default"))); - int main(){} - ])], - [ - AC_DEFINE([HAVE_DEFAULT_VISIBILITY_ATTRIBUTE], [1], [Define if the visibility attribute is supported.]) - AC_MSG_RESULT([yes]) - ], - [ - AC_MSG_RESULT([no]) - if test "$use_reduce_exports" = "yes"; then - AC_MSG_ERROR([Cannot find a working visibility attribute. Use --disable-reduce-exports.]) - fi - ] -) - AC_MSG_CHECKING([for dllexport attribute]) AC_COMPILE_IFELSE([AC_LANG_SOURCE([ __declspec(dllexport) int foo(void); From bbcba09cd5ca5fdd9055aaf64781125c5e505576 Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 5 Aug 2024 14:47:00 +0100 Subject: [PATCH 2/2] build: remove check for __declspec(dllexport) --- build_msvc/bitcoin_config.h.in | 3 --- configure.ac | 12 ------------ 2 files changed, 15 deletions(-) diff --git a/build_msvc/bitcoin_config.h.in b/build_msvc/bitcoin_config.h.in index 33632ad17c6..b0238c9112e 100644 --- a/build_msvc/bitcoin_config.h.in +++ b/build_msvc/bitcoin_config.h.in @@ -49,9 +49,6 @@ */ #define HAVE_DECL_SETSID 0 -/* Define if the dllexport attribute is supported. */ -#define HAVE_DLLEXPORT_ATTRIBUTE 1 - /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "https://github.com/bitcoin/bitcoin/issues" diff --git a/configure.ac b/configure.ac index d761911573a..ab6fa8b0d0a 100644 --- a/configure.ac +++ b/configure.ac @@ -943,18 +943,6 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ [ AC_MSG_RESULT([no])] ) -AC_MSG_CHECKING([for dllexport attribute]) -AC_COMPILE_IFELSE([AC_LANG_SOURCE([ - __declspec(dllexport) int foo(void); - int main(){} - ])], - [ - AC_DEFINE([HAVE_DLLEXPORT_ATTRIBUTE], [1], [Define if the dllexport attribute is supported.]) - AC_MSG_RESULT([yes]) - ], - [AC_MSG_RESULT([no])] -) - dnl Check for different ways of gathering OS randomness AC_MSG_CHECKING([for Linux getrandom function]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[