svn commit: r374962 - head/devel/icu/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri Dec 19 18:13:02 UTC 2014


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? */


More information about the svn-ports-head mailing list