aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2019-12-16 13:12:29 -0500
committerfanquake <fanquake@gmail.com>2019-12-16 13:12:29 -0500
commitabc147de95fb294a2c0a3105695e708517010322 (patch)
tree0bc3f64cc5616ca886f0e30eeb8cf564df43c119 /configure.ac
parent988eaf2fcb71284c5fc57c7ef755bdafa4b929a0 (diff)
downloadbitcoin-abc147de95fb294a2c0a3105695e708517010322.tar.xz
build: remove WINDOWS_BITS from build system
We no longer build/ship 32 bit windows executables.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index e7d14202a7..b8cb4f2812 100644
--- a/configure.ac
+++ b/configure.ac
@@ -525,12 +525,6 @@ case $host in
if test "x$CXXFLAGS_overridden" = "xno"; then
CXXFLAGS="$CXXFLAGS -w"
fi
- case $host in
- i?86-*) WINDOWS_BITS=32 ;;
- x86_64-*) WINDOWS_BITS=64 ;;
- *) AC_MSG_ERROR("Could not determine win32/win64 for installer") ;;
- esac
- AC_SUBST(WINDOWS_BITS)
dnl libtool insists upon adding -nostdlib and a list of objects/libs to link against.
dnl That breaks our ability to build dll's with static libgcc/libstdc++/libssp. Override