Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Dec 2014 18:13:01 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r374962 - head/devel/icu/files
Message-ID:  <201412191813.sBJID1JW080333@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Fri Dec 19 18:13:00 2014
New Revision: 374962
URL: https://svnweb.freebsd.org/changeset/ports/374962
QAT: https://qat.redports.org/buildarchive/r374962/

Log:
  - Fix build in MIPS (and other big-endian archs) by addin an include needed for proper endianess detection
  
  Upstream ticket: https://ssl.icu-project.org/trac/ticket/11437
  
  PR:		196044
  Submitted by:	amdmi3
  Approved by:	bapt

Added:
  head/devel/icu/files/patch-common__unicode__platform.h   (contents, props changed)

Added: head/devel/icu/files/patch-common__unicode__platform.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/icu/files/patch-common__unicode__platform.h	Fri Dec 19 18:13:00 2014	(r374962)
@@ -0,0 +1,12 @@
+--- common/unicode/platform.h.orig	2013-09-12 03:46:50.000000000 +0400
++++ common/unicode/platform.h	2014-12-16 03:44:56.000000000 +0300
+@@ -152,6 +152,9 @@
+ #       define U_PLATFORM U_PF_DARWIN
+ #   endif
+ #elif defined(BSD) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__MirBSD__)
++#   if defined(__FreeBSD__)
++#       include <sys/endian.h>
++#   endif
+ #   define U_PLATFORM U_PF_BSD
+ #elif defined(sun) || defined(__sun)
+     /* Check defined(__SVR4) || defined(__svr4__) to distinguish Solaris from SunOS? */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412191813.sBJID1JW080333>