diff options
author | fanquake <fanquake@gmail.com> | 2022-03-23 09:53:58 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-03-23 13:33:43 +0000 |
commit | 061accfddd2d27ad584c826413c68857d2be9ced (patch) | |
tree | 84f150749e6e3e9feee5f38e5a6df10453ff81a6 /configure.ac | |
parent | bc562b9ef81d4e37c20c4fdbd73be44d6f12efa0 (diff) |
build: require libtool 2.4.2
Every system we support has 2.4.6 available, except for OpenBSD, which
currently ships with 2.4.2 (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 #24615.
See also: https://repology.org/project/libtool/versions
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
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]) |