From owner-svn-ports-head@FreeBSD.ORG Wed Dec 31 00:35:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9AF7FB0; Wed, 31 Dec 2014 00:35:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C5DD9272F; Wed, 31 Dec 2014 00:35:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBV0ZN9u064822; Wed, 31 Dec 2014 00:35:23 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBV0ZNQ3064816; Wed, 31 Dec 2014 00:35:23 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201412310035.sBV0ZNQ3064816@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Wed, 31 Dec 2014 00:35:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375867 - in head/lang/php53: . files X-SVN-Group: ports-head 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.18-1 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: Wed, 31 Dec 2014 00:35:24 -0000 Author: sbruno Date: Wed Dec 31 00:35:22 2014 New Revision: 375867 URL: https://svnweb.freebsd.org/changeset/ports/375867 QAT: https://qat.redports.org/buildarchive/r375867/ Log: Fix build for armv6 with an upstream commit: http://git.php.net/?p=php-src.git;a=commitdiff;h=050aae2860e1c202e2e9db715beaa97d0a4c9c33;hp=e67a2b9e471a7bc0b774b9056bb38745b7187969#patch1 PR: 196067 Submitted by: mikael.urankar@gmail.com Reviewed by: flo@ Approved by: mentor (implicit) Added: head/lang/php53/files/patch-Zend_zend__ini.h (contents, props changed) Modified: head/lang/php53/Makefile Modified: head/lang/php53/Makefile ============================================================================== --- head/lang/php53/Makefile Wed Dec 31 00:31:55 2014 (r375866) +++ head/lang/php53/Makefile Wed Dec 31 00:35:22 2014 (r375867) @@ -3,7 +3,7 @@ PORTNAME= php53 PORTVERSION= 5.3.29 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} MASTER_SITE_SUBDIR= distributions Added: head/lang/php53/files/patch-Zend_zend__ini.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/php53/files/patch-Zend_zend__ini.h Wed Dec 31 00:35:22 2014 (r375867) @@ -0,0 +1,11 @@ +--- Zend/zend_ini.h.orig 2014-12-17 16:24:10 UTC ++++ Zend/zend_ini.h +@@ -28,7 +28,7 @@ + #define ZEND_INI_ALL (ZEND_INI_USER|ZEND_INI_PERDIR|ZEND_INI_SYSTEM) + + #ifndef XtOffsetOf +-# if defined(CRAY) || (defined(__arm) && !defined(LINUX)) ++# if defined(CRAY) || (defined(__ARMCC_VERSION) && !defined(LINUX)) + # ifdef __STDC__ + # define XtOffset(p_type, field) _Offsetof(p_type, field) + # else