Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 Apr 2015 22:47:34 +0000 (UTC)
From:      Adam Weinberger <adamw@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r383965 - head/multimedia/plexhometheater/files
Message-ID:  <201504132247.t3DMlYKF065428@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adamw
Date: Mon Apr 13 22:47:33 2015
New Revision: 383965
URL: https://svnweb.freebsd.org/changeset/ports/383965

Log:
  I forgot to add a patch in r383947. PHT will not build without it. It
  was present in the PR (199416, which I also got wrong in that commit).
  
  Noticed by:	Ben Woods (maintainer)

Added:
  head/multimedia/plexhometheater/files/patch-bsdendian   (contents, props changed)

Added: head/multimedia/plexhometheater/files/patch-bsdendian
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/plexhometheater/files/patch-bsdendian	Mon Apr 13 22:47:33 2015	(r383965)
@@ -0,0 +1,66 @@
+--- plex/Third-Party/hash-library/crc32.cpp.orig	2015-04-09 11:13:01 UTC
++++ plex/Third-Party/hash-library/crc32.cpp
+@@ -8,7 +8,7 @@
+ 
+ // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>
+--- plex/Third-Party/hash-library/keccak.cpp.orig	2015-04-09 11:33:51 UTC
++++ plex/Third-Party/hash-library/keccak.cpp
+@@ -8,7 +8,7 @@
+ 
+ // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>
+--- plex/Third-Party/hash-library/md5.cpp.orig	2015-04-09 11:33:58 UTC
++++ plex/Third-Party/hash-library/md5.cpp
+@@ -7,7 +7,7 @@
+ #include "md5.h"
+ 
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>
+--- plex/Third-Party/hash-library/sha1.cpp.orig	2015-04-09 11:34:06 UTC
++++ plex/Third-Party/hash-library/sha1.cpp
+@@ -8,7 +8,7 @@
+ 
+ // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>
+--- plex/Third-Party/hash-library/sha256.cpp.orig	2015-04-09 11:34:13 UTC
++++ plex/Third-Party/hash-library/sha256.cpp
+@@ -8,7 +8,7 @@
+ 
+ // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>
+--- plex/Third-Party/hash-library/sha3.cpp.orig	2015-04-09 11:34:21 UTC
++++ plex/Third-Party/hash-library/sha3.cpp
+@@ -8,7 +8,7 @@
+ 
+ // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>



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