From owner-svn-ports-head@freebsd.org Thu Aug 13 08:57:11 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A58159B7ECB; Thu, 13 Aug 2015 08:57:11 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.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 7C217D34; Thu, 13 Aug 2015 08:57:11 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D8vBZr028418; Thu, 13 Aug 2015 08:57:11 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D8vAwR028415; Thu, 13 Aug 2015 08:57:10 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508130857.t7D8vAwR028415@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Thu, 13 Aug 2015 08:57:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394056 - in head/print/harfbuzz: . 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.20 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: Thu, 13 Aug 2015 08:57:11 -0000 Author: kwm Date: Thu Aug 13 08:57:10 2015 New Revision: 394056 URL: https://svnweb.freebsd.org/changeset/ports/394056 Log: Update harfbuzz to 1.0.1. [1] Fix build on mips. [2] PR: 202176 [1], 201681 [2] Submitted by: olivierd@ [1], Carlos J Puga Medina [2] Added: head/print/harfbuzz/files/patch-src_hb-atomic-private.hh (contents, props changed) Modified: head/print/harfbuzz/Makefile head/print/harfbuzz/distinfo Modified: head/print/harfbuzz/Makefile ============================================================================== --- head/print/harfbuzz/Makefile Thu Aug 13 08:50:11 2015 (r394055) +++ head/print/harfbuzz/Makefile Thu Aug 13 08:57:10 2015 (r394056) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= harfbuzz -PORTVERSION= 0.9.41 +PORTVERSION= 1.0.1 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ @@ -20,7 +20,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-graphite2 INSTALL_TARGET= install-strip -PLIST_SUB+= LIBVER=0.941.0 +PLIST_SUB+= LIBVER=0.10000.1 .include Modified: head/print/harfbuzz/distinfo ============================================================================== --- head/print/harfbuzz/distinfo Thu Aug 13 08:50:11 2015 (r394055) +++ head/print/harfbuzz/distinfo Thu Aug 13 08:57:10 2015 (r394056) @@ -1,2 +1,2 @@ -SHA256 (harfbuzz-0.9.41.tar.bz2) = d81aa53d0c02b437beeaac159d7fc16394d676bbce0860fb6f6a10b587dc057c -SIZE (harfbuzz-0.9.41.tar.bz2) = 1188176 +SHA256 (harfbuzz-1.0.1.tar.bz2) = 32a1a7ad584a2f2cfba5c1d234d046c0521e86e7a21d403e15e89aa509ef0ea8 +SIZE (harfbuzz-1.0.1.tar.bz2) = 1211877 Added: head/print/harfbuzz/files/patch-src_hb-atomic-private.hh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/harfbuzz/files/patch-src_hb-atomic-private.hh Thu Aug 13 08:57:10 2015 (r394056) @@ -0,0 +1,16 @@ +--- src/hb-atomic-private.hh.orig 2015-04-10 02:16:57 UTC ++++ src/hb-atomic-private.hh +@@ -103,8 +103,12 @@ typedef int hb_atomic_int_impl_t; + #define hb_atomic_int_impl_add(AI, V) __sync_fetch_and_add (&(AI), (V)) + + #define hb_atomic_ptr_impl_get(P) (void *) (__sync_synchronize (), *(P)) ++#if defined(__FreeBSD__) && defined(__mips__) ++#include ++#define hb_atomic_ptr_impl_cmpexch(P,O,N) atomic_cmpset_rel_32 ((uint32_t *)(P), (uint32_t)(O), (uint32_t)(N)) ++#else + #define hb_atomic_ptr_impl_cmpexch(P,O,N) __sync_bool_compare_and_swap ((P), (O), (N)) +- ++#endif + + #elif !defined(HB_NO_MT) && defined(HAVE_SOLARIS_ATOMIC_OPS) +