diff options
author | orbea <orbea@riseup.net> | 2022-07-19 08:07:50 -0700 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2022-07-22 09:51:12 +0200 |
commit | 5b1026e2a5c0761ed5b820a903312e186849fd16 (patch) | |
tree | f7c0d95e6c5065cc0de3bac20a9ae5108c10c90e /www-servers/apache/files | |
parent | app-admin/apache-tools: Fix the build with rlibtool (diff) | |
download | gentoo-5b1026e2a5c0761ed5b820a903312e186849fd16.tar.gz gentoo-5b1026e2a5c0761ed5b820a903312e186849fd16.tar.bz2 gentoo-5b1026e2a5c0761ed5b820a903312e186849fd16.zip |
www-servers/apache: Fix the build with rlibtool
Bug: https://bugs.gentoo.org/858836
Signed-off-by: orbea <orbea@riseup.net>
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'www-servers/apache/files')
-rw-r--r-- | www-servers/apache/files/apache-2.4.54-libtool.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/www-servers/apache/files/apache-2.4.54-libtool.patch b/www-servers/apache/files/apache-2.4.54-libtool.patch new file mode 100644 index 000000000000..a0d55d885fd8 --- /dev/null +++ b/www-servers/apache/files/apache-2.4.54-libtool.patch @@ -0,0 +1,21 @@ +Bug: https://bugs.gentoo.org/858836 + +From: orbea <orbea@riseup.net> +Date: Tue, 19 Jul 2022 07:46:36 -0700 +Subject: [PATCH] build: Fix the build with slibtool + +Adding LT_INIT to configure.in generates the libtool script in the build +directory which is required by rlibtool to determine if the build is +shared or static. + +--- a/configure.in ++++ b/configure.in +@@ -398,7 +398,7 @@ AC_PATH_PROG(RSYNC, rsync) + AC_PATH_PROG(SVN, svn) + AC_PROG_AWK + AC_PROG_LN_S +-AC_CHECK_TOOL(RANLIB, ranlib, true) ++LT_INIT + dnl AC_PATH_PROG(PERL_PATH, perl) + AC_CHECK_PROGS(LYNX_PATH,[lynx links elinks], [lynx]) + |