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 6C9941396D0 for ; Sun, 27 Aug 2017 09:08:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9F03E0D1A; Sun, 27 Aug 2017 09:08:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 9693FE0D1A for ; Sun, 27 Aug 2017 09:08:18 +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 D0D37341961 for ; Sun, 27 Aug 2017 09:08:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A56C843C for ; Sun, 27 Aug 2017 09:08:15 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1503824889.f274e813d08b1bcae5088b7c711b34e2fc994655.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git/git-2.14.1.ebuild dev-vcs/git/git-9999-r1.ebuild dev-vcs/git/git-9999-r2.ebuild dev-vcs/git/git-9999-r3.ebuild dev-vcs/git/git-9999.ebuild X-VCS-Directories: dev-vcs/git/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: f274e813d08b1bcae5088b7c711b34e2fc994655 X-VCS-Branch: master Date: Sun, 27 Aug 2017 09:08:15 +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: f194f5b0-be76-4172-bf84-29a10b5ff2de X-Archives-Hash: 89984c42d2634b258f93acbccd59b0a1 commit: f274e813d08b1bcae5088b7c711b34e2fc994655 Author: Fabian Groffen gentoo org> AuthorDate: Sun Aug 27 09:07:52 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Aug 27 09:08:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f274e813 dev-vcs/git: fix building on Solaris 10 sparc Package-Manager: Portage-2.3.6, Repoman-2.3.1 dev-vcs/git/git-2.14.1.ebuild | 5 +++-- dev-vcs/git/git-9999-r1.ebuild | 5 +++-- dev-vcs/git/git-9999-r2.ebuild | 5 +++-- dev-vcs/git/git-9999-r3.ebuild | 5 +++-- dev-vcs/git/git-9999.ebuild | 5 +++-- 5 files changed, 15 insertions(+), 10 deletions(-) diff --git a/dev-vcs/git/git-2.14.1.ebuild b/dev-vcs/git/git-2.14.1.ebuild index 50f3a1988c8..f650073b5ca 100644 --- a/dev-vcs/git/git-2.14.1.ebuild +++ b/dev-vcs/git/git-2.14.1.ebuild @@ -157,7 +157,7 @@ exportmakeopts() { myopts+=" NO_CURL=YesPlease" fi - # broken assumptions, because of broken build system ... + # broken assumptions, because of static build system ... myopts+=" NO_FINK=YesPlease NO_DARWIN_PORTS=YesPlease" myopts+=" INSTALL=install TAR=tar" myopts+=" SHELL_PATH=${EPREFIX}/bin/sh" @@ -219,7 +219,8 @@ exportmakeopts() { if [[ ${CHOST} == *-solaris* ]]; then myopts+=" NEEDS_LIBICONV=YesPlease" myopts+=" HAVE_CLOCK_MONOTONIC=1" - myopts+=" HAVE_GETDELIM=1" + grep -q getdelim "${ROOT}"/usr/include/stdio.h && \ + myopts+=" HAVE_GETDELIM=1" fi has_version '>=app-text/asciidoc-8.0' \ diff --git a/dev-vcs/git/git-9999-r1.ebuild b/dev-vcs/git/git-9999-r1.ebuild index 1dd3819d0a7..b588ab74080 100644 --- a/dev-vcs/git/git-9999-r1.ebuild +++ b/dev-vcs/git/git-9999-r1.ebuild @@ -157,7 +157,7 @@ exportmakeopts() { myopts+=" NO_CURL=YesPlease" fi - # broken assumptions, because of broken build system ... + # broken assumptions, because of static build system ... myopts+=" NO_FINK=YesPlease NO_DARWIN_PORTS=YesPlease" myopts+=" INSTALL=install TAR=tar" myopts+=" SHELL_PATH=${EPREFIX}/bin/sh" @@ -219,7 +219,8 @@ exportmakeopts() { if [[ ${CHOST} == *-solaris* ]]; then myopts+=" NEEDS_LIBICONV=YesPlease" myopts+=" HAVE_CLOCK_MONOTONIC=1" - myopts+=" HAVE_GETDELIM=1" + grep -q getdelim "${ROOT}"/usr/include/stdio.h && \ + myopts+=" HAVE_GETDELIM=1" fi has_version '>=app-text/asciidoc-8.0' \ diff --git a/dev-vcs/git/git-9999-r2.ebuild b/dev-vcs/git/git-9999-r2.ebuild index 17621717d20..01272659efb 100644 --- a/dev-vcs/git/git-9999-r2.ebuild +++ b/dev-vcs/git/git-9999-r2.ebuild @@ -157,7 +157,7 @@ exportmakeopts() { myopts+=" NO_CURL=YesPlease" fi - # broken assumptions, because of broken build system ... + # broken assumptions, because of static build system ... myopts+=" NO_FINK=YesPlease NO_DARWIN_PORTS=YesPlease" myopts+=" INSTALL=install TAR=tar" myopts+=" SHELL_PATH=${EPREFIX}/bin/sh" @@ -219,7 +219,8 @@ exportmakeopts() { if [[ ${CHOST} == *-solaris* ]]; then myopts+=" NEEDS_LIBICONV=YesPlease" myopts+=" HAVE_CLOCK_MONOTONIC=1" - myopts+=" HAVE_GETDELIM=1" + grep -q getdelim "${ROOT}"/usr/include/stdio.h && \ + myopts+=" HAVE_GETDELIM=1" fi has_version '>=app-text/asciidoc-8.0' \ diff --git a/dev-vcs/git/git-9999-r3.ebuild b/dev-vcs/git/git-9999-r3.ebuild index 1ef3c35807c..76bcaf24d0d 100644 --- a/dev-vcs/git/git-9999-r3.ebuild +++ b/dev-vcs/git/git-9999-r3.ebuild @@ -157,7 +157,7 @@ exportmakeopts() { myopts+=" NO_CURL=YesPlease" fi - # broken assumptions, because of broken build system ... + # broken assumptions, because of static build system ... myopts+=" NO_FINK=YesPlease NO_DARWIN_PORTS=YesPlease" myopts+=" INSTALL=install TAR=tar" myopts+=" SHELL_PATH=${EPREFIX}/bin/sh" @@ -219,7 +219,8 @@ exportmakeopts() { if [[ ${CHOST} == *-solaris* ]]; then myopts+=" NEEDS_LIBICONV=YesPlease" myopts+=" HAVE_CLOCK_MONOTONIC=1" - myopts+=" HAVE_GETDELIM=1" + grep -q getdelim "${ROOT}"/usr/include/stdio.h && \ + myopts+=" HAVE_GETDELIM=1" fi has_version '>=app-text/asciidoc-8.0' \ diff --git a/dev-vcs/git/git-9999.ebuild b/dev-vcs/git/git-9999.ebuild index 98deedf0d9f..aa7cf5a5b93 100644 --- a/dev-vcs/git/git-9999.ebuild +++ b/dev-vcs/git/git-9999.ebuild @@ -157,7 +157,7 @@ exportmakeopts() { myopts+=" NO_CURL=YesPlease" fi - # broken assumptions, because of broken build system ... + # broken assumptions, because of static build system ... myopts+=" NO_FINK=YesPlease NO_DARWIN_PORTS=YesPlease" myopts+=" INSTALL=install TAR=tar" myopts+=" SHELL_PATH=${EPREFIX}/bin/sh" @@ -219,7 +219,8 @@ exportmakeopts() { if [[ ${CHOST} == *-solaris* ]]; then myopts+=" NEEDS_LIBICONV=YesPlease" myopts+=" HAVE_CLOCK_MONOTONIC=1" - myopts+=" HAVE_GETDELIM=1" + grep -q getdelim "${ROOT}"/usr/include/stdio.h && \ + myopts+=" HAVE_GETDELIM=1" fi has_version '>=app-text/asciidoc-8.0' \