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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D0D3E138346 for ; Sun, 5 Jan 2020 13:27:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26C21E0A8E; Sun, 5 Jan 2020 13:27:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0EB81E0A8E for ; Sun, 5 Jan 2020 13:27:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E610C34DD22 for ; Sun, 5 Jan 2020 13:27:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74A553D for ; Sun, 5 Jan 2020 13:27:06 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1578230819.385dfbc785aed31726688504959be6e20896716c.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gegl/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/gegl/files/gegl-0.2.0-underlinking.patch X-VCS-Directories: media-libs/gegl/files/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 385dfbc785aed31726688504959be6e20896716c X-VCS-Branch: master Date: Sun, 5 Jan 2020 13:27:06 +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: 742b02bc-75c0-4104-b287-ba456b0f057d X-Archives-Hash: 13c038cb8f886bda81ae34e4077b2f85 commit: 385dfbc785aed31726688504959be6e20896716c Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Jan 5 13:26:45 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jan 5 13:26:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385dfbc7 media-libs/gegl: add missing -lm to tests, bug #639986 The change fixes underlinking on ia64: ``` gnu/bin/ld: buffer-test.o: undefined reference to symbol 'floor@ GLIBC_2.2' /usr/lib/gcc/ia64-unknown-linux-gnu/9.2.0/../../../../ia64-unknown-linux-gnu/bin/ld: /lib/libm.so.6.1: error adding symbols: DSO missing from command line ``` Closes: https://bugs.gentoo.org/639986 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Sergei Trofimovich gentoo.org> media-libs/gegl/files/gegl-0.2.0-underlinking.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/media-libs/gegl/files/gegl-0.2.0-underlinking.patch b/media-libs/gegl/files/gegl-0.2.0-underlinking.patch index 53f29c49da7..00e936ce68e 100644 --- a/media-libs/gegl/files/gegl-0.2.0-underlinking.patch +++ b/media-libs/gegl/files/gegl-0.2.0-underlinking.patch @@ -47,6 +47,19 @@ index 8f1077d..4dd3845 100644 noinst_PROGRAMS = introspect operation_reference img_cmp +diff --git a/tests/buffer/Makefile.am b/tests/buffer/Makefile.am +index d62ce71..0a4df53 100644 +--- a/tests/buffer/Makefile.am ++++ b/tests/buffer/Makefile.am +@@ -30,7 +30,7 @@ AM_CFLAGS = $(DEP_CFLAGS) $(BABL_CFLAGS) + + buffer_test_LDADD = \ + $(top_builddir)/gegl/libgegl-$(GEGL_API_VERSION).la \ +- $(DEP_LIBS) $(BABL_LIBS) ++ $(DEP_LIBS) $(BABL_LIBS) $(MATH_LIB) + + + # Our custom target rules -- 2.12.2