aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-03-24 10:56:13 +0000
committerfanquake <fanquake@gmail.com>2022-03-24 10:56:37 +0000
commitcea2ce09deb65026d92ede29a7171d7ae47f5b2a (patch)
tree22f117e46171cee8b7d90987505a91c9bb5fc91b
parent98e9d8e8e2e3e65e6f1e14be26457a9f9090c092 (diff)
parent061accfddd2d27ad584c826413c68857d2be9ced (diff)
downloadbitcoin-cea2ce09deb65026d92ede29a7171d7ae47f5b2a.tar.xz
Merge bitcoin/bitcoin#24650: build: require libtool 2.4.2
061accfddd2d27ad584c826413c68857d2be9ced build: require libtool 2.4.2 (fanquake) Pull request description: Every system we support has 2.4.6 available, except for OpenBSD, which [currently ships with 2.4.2](https://github.com/openbsd/ports/blob/master/devel/libtool/Makefile) (released 2011). For now, set our minimum required version to that. After a 7 year hitus, 2.4.7 has also very recently been released: https://savannah.gnu.org/forum/forum.php?forum_id=10139. Partially motivated by comments in https://github.com/bitcoin/bitcoin/pull/24615. See also: https://repology.org/project/libtool/versions ACKs for top commit: achow101: ACK 061accfddd2d27ad584c826413c68857d2be9ced hebasto: ACK 061accfddd2d27ad584c826413c68857d2be9ced prusnak: ACK 061accfddd2d27ad584c826413c68857d2be9ced Tree-SHA512: bc032022b8609b73253ff1c4fd480f4d09be761b8fec295f39319f9499ee2df116f55295da476be551c43ed88fbb0bfed7bb5a188b9979b34147fe39737ec76f
-rw-r--r--configure.ac6
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 63ff6a1ebd..3b355eb7b6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -96,10 +96,8 @@ fi
AC_PROG_OBJCXX
])
-dnl Since libtool 1.5.2 (released 2004-01-25), on Linux libtool no longer
-dnl sets RPATH for any directories in the dynamic linker search path.
-dnl See more: https://wiki.debian.org/RpathIssue
-LT_PREREQ([1.5.2])
+dnl OpenBSD ships with 2.4.2
+LT_PREREQ([2.4.2])
dnl Libtool init checks.
LT_INIT([pic-only win32-dll])