From owner-svn-ports-head@freebsd.org Sat Sep 21 20:02:21 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E463312E16B; Sat, 21 Sep 2019 20:02:21 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46bM1n5mgzz3x2R; Sat, 21 Sep 2019 20:02:21 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A97981B644; Sat, 21 Sep 2019 20:02:21 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8LK2LFc021400; Sat, 21 Sep 2019 20:02:21 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8LK2LYP021399; Sat, 21 Sep 2019 20:02:21 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201909212002.x8LK2LYP021399@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 21 Sep 2019 20:02:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512537 - head/math/p5-Math-Int128 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/math/p5-Math-Int128 X-SVN-Commit-Revision: 512537 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Sep 2019 20:02:22 -0000 Author: linimon Date: Sat Sep 21 20:02:21 2019 New Revision: 512537 URL: https://svnweb.freebsd.org/changeset/ports/512537 Log: Remove hardcoding from 2013 and replace it with the modern equivalent. Found while working on powerpc64. Tested on: amd64, powerpc64. Approved by: portmgr (tier-2 blanket) Modified: head/math/p5-Math-Int128/Makefile Modified: head/math/p5-Math-Int128/Makefile ============================================================================== --- head/math/p5-Math-Int128/Makefile Sat Sep 21 19:49:53 2019 (r512536) +++ head/math/p5-Math-Int128/Makefile Sat Sep 21 20:02:21 2019 (r512537) @@ -16,21 +16,12 @@ LICENSE= ART10 BUILD_DEPENDS= p5-Math-Int64>=0.51:math/p5-Math-Int64 RUN_DEPENDS= p5-Math-Int64>=0.51:math/p5-Math-Int64 -USES= perl5 +USES= compiler:c11 perl5 USE_PERL5= configure NOT_FOR_ARCHS= armv6 i386 -.include - -# need clang 3.2+ or GCC 4.4+ -.if exists(/usr/bin/clang) -CC= /usr/bin/clang -.else -USE_GCC= yes -.endif - post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Math/Int128/Int128.so -.include +.include