Received: by mail.netbsd.org (Postfix, from userid 605) id 0F57A84DB2; Thu, 17 Jan 2019 16:43:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8168F84D9C for ; Thu, 17 Jan 2019 16:43:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id fYCfalHkfd8z for ; Thu, 17 Jan 2019 16:43:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B01CB84D83 for ; Thu, 17 Jan 2019 16:43:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A9EA8FB16; Thu, 17 Jan 2019 16:43:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1547743416276750" MIME-Version: 1.0 Date: Thu, 17 Jan 2019 16:43:36 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/archivers/gtar-base To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20190117164336.A9EA8FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1547743416276750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Thu Jan 17 16:43:36 UTC 2019 Modified Files: pkgsrc/archivers/gtar-base: Makefile Log Message: On OpenBSD, "code using the sigwait() function must be compiled and linked with the -pthread option". To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 pkgsrc/archivers/gtar-base/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1547743416276750 Content-Disposition: inline Content-Length: 773 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/gtar-base/Makefile diff -u pkgsrc/archivers/gtar-base/Makefile:1.93 pkgsrc/archivers/gtar-base/Makefile:1.94 --- pkgsrc/archivers/gtar-base/Makefile:1.93 Sun Mar 11 17:28:08 2018 +++ pkgsrc/archivers/gtar-base/Makefile Thu Jan 17 16:43:36 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.93 2018/03/11 17:28:08 wiz Exp $ +# $NetBSD: Makefile,v 1.94 2019/01/17 16:43:36 schmonz Exp $ .include "../../archivers/gtar/Makefile.common" @@ -48,6 +48,10 @@ CONFIGURE_ENV+= gt_cv_func_gnugettext3_ CPPFLAGS.MirBSD+= -Dstrtoimax=strtoll -Dstrtoumax=strtoull +# From sigwait(3): +CFLAGS.OpenBSD+= -pthread +LDFLAGS.OpenBSD+= -pthread + #bug 20453 in bug-gzip list, passed onto gnulib CONFIGURE_ENV.AIX+= ac_cv_header_wctype_h=no --_----------=_1547743416276750--