From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 01B6059CA3 for ; Sun, 14 Feb 2016 01:26:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1B4621C007; Sun, 14 Feb 2016 01:26:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 26EDEE07FA for ; Sun, 14 Feb 2016 01:26:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2235F340BE6 for ; Sun, 14 Feb 2016 01:26:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02E2B155F for ; Sun, 14 Feb 2016 01:26:32 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1455405235.962d51191d7ac490d0a44fd3c370d27841ff43a5.vapier@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: /, libq/ X-VCS-Repository: proj/portage-utils X-VCS-Files: autogen.sh libq/hash_fd.c libq/md5_sha1_sum.c porting.h X-VCS-Directories: libq/ / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 962d51191d7ac490d0a44fd3c370d27841ff43a5 X-VCS-Branch: master Date: Sun, 14 Feb 2016 01:26:32 +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-Archives-Salt: cca996a8-4b1d-4956-be0b-2798bda6e6f9 X-Archives-Hash: 2b89f5b6a6744e0f4c81ef1096461d69 commit: 962d51191d7ac490d0a44fd3c370d27841ff43a5 Author: Mike Frysinger gentoo org> AuthorDate: Sat Feb 13 23:13:55 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Feb 13 23:13:55 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=962d5119 autogen: pull in inttypes as we use it This allows us to clean up some of the __INTERIX mess in the process. autogen.sh | 1 + libq/hash_fd.c | 2 -- libq/md5_sha1_sum.c | 2 -- porting.h | 2 -- 4 files changed, 1 insertion(+), 6 deletions(-) diff --git a/autogen.sh b/autogen.sh index dbb2aac..4313a84 100755 --- a/autogen.sh +++ b/autogen.sh @@ -20,6 +20,7 @@ mods=" futimens getline getopt-posix + inttypes mkdirat openat progname diff --git a/libq/hash_fd.c b/libq/hash_fd.c index 3d352da..c021267 100644 --- a/libq/hash_fd.c +++ b/libq/hash_fd.c @@ -23,9 +23,7 @@ #include #include #include -#ifndef __INTERIX #include -#endif #include #include #include diff --git a/libq/md5_sha1_sum.c b/libq/md5_sha1_sum.c index ed6adf0..6232433 100644 --- a/libq/md5_sha1_sum.c +++ b/libq/md5_sha1_sum.c @@ -20,9 +20,7 @@ #include #include #include -#ifndef __INTERIX #include -#endif #include #include #include diff --git a/porting.h b/porting.h index 8045813..28b6317 100644 --- a/porting.h +++ b/porting.h @@ -31,9 +31,7 @@ #include #include #include -#ifndef __INTERIX #include -#endif #include #include #include