From owner-svn-ports-all@freebsd.org Sat Aug 22 23:06:45 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0D8633C7878; Sat, 22 Aug 2020 23:06:45 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BYvCS6CcSz3gVg; Sat, 22 Aug 2020 23:06:44 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B8F441D9C4; Sat, 22 Aug 2020 23:06:44 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07MN6iKw014017; Sat, 22 Aug 2020 23:06:44 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07MN6iKx014015; Sat, 22 Aug 2020 23:06:44 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202008222306.07MN6iKx014015@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Sat, 22 Aug 2020 23:06:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r545791 - in branches/2020Q3/net/appkonference: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: in branches/2020Q3/net/appkonference: . files X-SVN-Commit-Revision: 545791 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Aug 2020 23:06:45 -0000 Author: pkubaj Date: Sat Aug 22 23:06:44 2020 New Revision: 545791 URL: https://svnweb.freebsd.org/changeset/ports/545791 Log: MFH: r545790 net/appkonference: fix build on powerpc64 Approved by: portmgr (fix build blanket) Added: branches/2020Q3/net/appkonference/files/patch-konference_libwebrtc_typedefs.h - copied unchanged from r545790, head/net/appkonference/files/patch-konference_libwebrtc_typedefs.h Modified: branches/2020Q3/net/appkonference/Makefile Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/net/appkonference/Makefile ============================================================================== --- branches/2020Q3/net/appkonference/Makefile Sat Aug 22 23:05:38 2020 (r545790) +++ branches/2020Q3/net/appkonference/Makefile Sat Aug 22 23:06:44 2020 (r545791) @@ -13,7 +13,7 @@ COMMENT= High-performance Asterisk voice/video confere LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -ONLY_FOR_ARCHS= amd64 armv6 armv7 i386 powerpc +ONLY_FOR_ARCHS= amd64 armv6 armv7 i386 powerpc powerpc64 ONLY_FOR_ARCHS_REASON= not yet ported to this architecture BUILD_DEPENDS= asterisk:net/asterisk13 Copied: branches/2020Q3/net/appkonference/files/patch-konference_libwebrtc_typedefs.h (from r545790, head/net/appkonference/files/patch-konference_libwebrtc_typedefs.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/net/appkonference/files/patch-konference_libwebrtc_typedefs.h Sat Aug 22 23:06:44 2020 (r545791, copy of r545790, head/net/appkonference/files/patch-konference_libwebrtc_typedefs.h) @@ -0,0 +1,23 @@ +--- libwebrtc/typedefs.h.orig 2019-08-04 15:52:12 UTC ++++ libwebrtc/typedefs.h +@@ -48,7 +48,19 @@ + #define WEBRTC_ARCH_32_BITS + #define WEBRTC_ARCH_LITTLE_ENDIAN + #else +-#error Please add support for your architecture in typedefs.h ++/* instead of failing, use typical unix defines... */ ++#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ ++#define WEBRTC_ARCH_LITTLE_ENDIAN ++#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ ++#define WEBRTC_ARCH_BIG_ENDIAN ++#else ++#error __BYTE_ORDER__ is not defined ++#endif ++#if defined(__LP64__) ++#define WEBRTC_ARCH_64_BITS ++#else ++#define WEBRTC_ARCH_32_BITS ++#endif + #endif + + #if !(defined(WEBRTC_ARCH_LITTLE_ENDIAN) ^ defined(WEBRTC_ARCH_BIG_ENDIAN))