From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E86B1158091 for ; Fri, 17 Jun 2022 23:45:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEAF3E09FB; Fri, 17 Jun 2022 23:45:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 826D3E09AB for ; Fri, 17 Jun 2022 23:45:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9222C3417B1 for ; Fri, 17 Jun 2022 23:45:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D25837F for ; Fri, 17 Jun 2022 23:45:05 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1655509493.9fa0feab9df77f5fe7014cbf6f4dd9451fd2e42c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmaa/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmaa/files/libmaa-1.3.2-libtool.patch X-VCS-Directories: dev-libs/libmaa/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9fa0feab9df77f5fe7014cbf6f4dd9451fd2e42c X-VCS-Branch: master Date: Fri, 17 Jun 2022 23:45:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 00834d7c-f5ef-438b-8217-4f67d86d561a X-Archives-Hash: c8132b9ac13f12c47fea9049d9f8a64a commit: 9fa0feab9df77f5fe7014cbf6f4dd9451fd2e42c Author: orbea riseup net> AuthorDate: Fri Jun 17 23:10:18 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 17 23:44:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fa0feab dev-libs/libmaa: Fix the build with rlibtool The configure.in lacks LT_INIT which generates libtool and allows the build to work with rlibtool which depends on this file to determine if it should build shared or static libraries. Closes: https://bugs.gentoo.org/778464 Signed-off-by: orbea riseup.net> Closes: https://github.com/gentoo/gentoo/pull/25947 Signed-off-by: Sam James gentoo.org> dev-libs/libmaa/files/libmaa-1.3.2-libtool.patch | 55 ++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/dev-libs/libmaa/files/libmaa-1.3.2-libtool.patch b/dev-libs/libmaa/files/libmaa-1.3.2-libtool.patch new file mode 100644 index 000000000000..bbdecdd89e62 --- /dev/null +++ b/dev-libs/libmaa/files/libmaa-1.3.2-libtool.patch @@ -0,0 +1,55 @@ +https://bugs.gentoo.org/778464 + +From: orbea +Date: Fri, 17 Jun 2022 15:59:49 -0700 +Subject: [PATCH] configure: Add missing LT_INIT + +--- a/Makefile.in ++++ b/Makefile.in +@@ -27,6 +27,7 @@ VERSION=$(MAA_MAJOR).$(MAA_MINOR).$(MAA_TEENY) + .SUFFIXES: + .SUFFIXES: .c .o + ++top_builddir= @top_builddir@ + srcdir= @srcdir@ + VPATH= @srcdir@ + prefix= @prefix@ +--- a/configure.in ++++ b/configure.in +@@ -28,6 +28,8 @@ AC_INIT + AC_CONFIG_SRCDIR([maa.h]) + AC_CONFIG_HEADER(config.h) + ++LT_INIT ++ + MAA_MAJOR=1 + MAA_MINOR=3 + MAA_TEENY=2 +@@ -38,7 +40,7 @@ echo . + AC_CANONICAL_HOST + AC_PROG_AWK + AC_PROG_CC +-#AC_PROG_LIBTOOL ++AC_PROG_LIBTOOL + AC_ISC_POSIX + + if test "$CC" = gcc; then +@@ -57,8 +59,6 @@ AC_CHECK_PROGS(DVIPS,dvips) + AC_CHECK_PROGS(REFBIBTEX,refbibtex) + AC_CHECK_PROGS(BIBTEX,bibtex) + +-AC_CHECK_PROG(LIBTOOL,libtool,libtool) +- + echo . + echo Checking for header file support + +--- a/doc/Makefile.in ++++ b/doc/Makefile.in +@@ -22,6 +22,7 @@ + + .SUFFIXES: + ++top_builddir= @top_builddir@ + srcdir= @srcdir@ + VPATH= @srcdir@ + prefix= @prefix@