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 6A30D158094 for ; Fri, 7 Oct 2022 11:29:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CF5BE08CE; Fri, 7 Oct 2022 11:29:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6FD84E08CE for ; Fri, 7 Oct 2022 11:29:00 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EE8323410BD for ; Fri, 7 Oct 2022 11:28:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5EE1608 for ; Fri, 7 Oct 2022 11:28:55 +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: <1665142094.85ae38056b4c42f99e76210d844cf994cca7bd5a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/dvtm/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/dvtm/files/dvtm-0.15-gentoo.patch X-VCS-Directories: app-misc/dvtm/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 85ae38056b4c42f99e76210d844cf994cca7bd5a X-VCS-Branch: master Date: Fri, 7 Oct 2022 11:28:55 +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: e37b502e-7270-4b4d-b9e6-60a14f5d3121 X-Archives-Hash: b5526cf77137dccfeb2c13371c66a5b7 commit: 85ae38056b4c42f99e76210d844cf994cca7bd5a Author: Petr Vaněk atlas cz> AuthorDate: Thu Oct 6 15:06:04 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 7 11:28:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85ae3805 app-misc/dvtm: fix implicit function declaration issue This commit patches the gentoo patch in such a way that compiler will search for curses.h in ncrusesw directory where addnwstr function is located. Closes: https://bugs.gentoo.org/870526 Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Sam James gentoo.org> app-misc/dvtm/files/dvtm-0.15-gentoo.patch | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-misc/dvtm/files/dvtm-0.15-gentoo.patch b/app-misc/dvtm/files/dvtm-0.15-gentoo.patch index 3bb7dec3721f..22a3fe4ebf34 100644 --- a/app-misc/dvtm/files/dvtm-0.15-gentoo.patch +++ b/app-misc/dvtm/files/dvtm-0.15-gentoo.patch @@ -1,6 +1,6 @@ --- a/config.mk +++ b/config.mk -@@ -10,12 +10,12 @@ +@@ -10,12 +10,13 @@ MANPREFIX = ${PREFIX}/share/man TERMINFO := ${DESTDIR}${PREFIX}/share/terminfo INCS = -I. @@ -8,6 +8,7 @@ -CPPFLAGS = -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_XOPEN_SOURCE_EXTENDED +LIBS = -lc -lutil $(shell $(PKG_CONFIG) --libs ncursesw) +CPPFLAGS += -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_XOPEN_SOURCE_EXTENDED ++CPPFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw) CFLAGS += -std=c99 ${INCS} -DVERSION=\"${VERSION}\" -DNDEBUG ${CPPFLAGS} LDFLAGS += ${LIBS} @@ -18,7 +19,7 @@ STRIP ?= strip --- a/Makefile +++ b/Makefile -@@ -16,13 +16,13 @@ +@@ -16,13 +16,13 @@ config.h: .c.o: @echo CC $<