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 277B51382C5 for ; Thu, 4 Feb 2021 18:51:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FB1EE096B; Thu, 4 Feb 2021 18:51:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1D4D1E096B for ; Thu, 4 Feb 2021 18:51:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 F040F342733 for ; Thu, 4 Feb 2021 18:51:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A41253 for ; Thu, 4 Feb 2021 18:51:25 +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: <1612464636.abf2a4a77305e9c2a9f5500712edba89b8f95ed5.slyfox@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: / X-VCS-Repository: proj/pax-utils X-VCS-Files: porting.h X-VCS-Directories: / X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: abf2a4a77305e9c2a9f5500712edba89b8f95ed5 X-VCS-Branch: master Date: Thu, 4 Feb 2021 18:51:25 +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: b762ab55-e1f5-4e87-b6e0-26d9aec3d983 X-Archives-Hash: 47edbdd69f5e8a88d645c8afb1ccad09 commit: abf2a4a77305e9c2a9f5500712edba89b8f95ed5 Author: OBATA Akio wizdas com> AuthorDate: Thu Feb 4 18:50:36 2021 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Thu Feb 4 18:50:36 2021 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=abf2a4a7 glob is used in paxldso.c for NetBSD too, but glob.h is not included in porting.h for NetBSD. Signed-off-by: Sergei Trofimovich gentoo.org> porting.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/porting.h b/porting.h index 636e862..17bbbbc 100644 --- a/porting.h +++ b/porting.h @@ -61,7 +61,7 @@ # include #endif -#if defined(__GLIBC__) || defined(__UCLIBC__) +#if defined(__GLIBC__) || defined(__UCLIBC__) || defined(__NetBSD__) # include #endif