From owner-svn-ports-head@freebsd.org Tue Oct 16 05:14:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5975B10E1BF3; Tue, 16 Oct 2018 05:14:43 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0FC4A7B20A; Tue, 16 Oct 2018 05:14:43 +0000 (UTC) (envelope-from joneum@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 0A894180A9; Tue, 16 Oct 2018 05:14:43 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9G5EgoO052785; Tue, 16 Oct 2018 05:14:42 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9G5EgwP052783; Tue, 16 Oct 2018 05:14:42 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201810160514.w9G5EgwP052783@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 16 Oct 2018 05:14:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482202 - in head: lang/php73 security/php73-hash X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: in head: lang/php73 security/php73-hash X-SVN-Commit-Revision: 482202 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.27 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: Tue, 16 Oct 2018 05:14:43 -0000 Author: joneum Date: Tue Oct 16 05:14:42 2018 New Revision: 482202 URL: https://svnweb.freebsd.org/changeset/ports/482202 Log: security/php73-hash: fix build with GCC-based architectures Unbreak this Port on mips64 PR: 232160 Reported by: Piotr Kubaj Approved by: tz (implicit) Sponsored by: Netzkommune GmbH Modified: head/lang/php73/Makefile.ext head/security/php73-hash/Makefile Modified: head/lang/php73/Makefile.ext ============================================================================== --- head/lang/php73/Makefile.ext Tue Oct 16 00:52:16 2018 (r482201) +++ head/lang/php73/Makefile.ext Tue Oct 16 05:14:42 2018 (r482202) @@ -131,6 +131,11 @@ CONFIGURE_ARGS+=--with-gmp=${LOCALBASE} .if ${PHP_MODNAME} == "hash" CONFIGURE_ARGS+=--enable-hash \ --with-mhash +CFLAGS_mips64= -DHAVE_SLOW_HASH3 +CFLAGS_powerpc64= -DHAVE_SLOW_HASH3 +CFLAGS_powerpc= -DHAVE_SLOW_HASH3 +CFLAGS_powerpcspe= -DHAVE_SLOW_HASH3 +CFLAGS_sparc64= -DHAVE_SLOW_HASH3 .endif .if ${PHP_MODNAME} == "iconv" Modified: head/security/php73-hash/Makefile ============================================================================== --- head/security/php73-hash/Makefile Tue Oct 16 00:52:16 2018 (r482201) +++ head/security/php73-hash/Makefile Tue Oct 16 05:14:42 2018 (r482202) @@ -8,6 +8,4 @@ PKGNAMESUFFIX= -hash TEST_TARGET= test -BROKEN_mips64= fails to compile: KeccakHash.h: No such file or directory - .include "${MASTERDIR}/Makefile"