From owner-svn-ports-head@FreeBSD.ORG Wed Sep 5 20:37:06 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A795106566B; Wed, 5 Sep 2012 20:37:06 +0000 (UTC) (envelope-from nox@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3BB598FC15; Wed, 5 Sep 2012 20:37:06 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q85Kb6ww098345; Wed, 5 Sep 2012 20:37:06 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q85Kb6f8098341; Wed, 5 Sep 2012 20:37:06 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201209052037.q85Kb6f8098341@svn.freebsd.org> From: Juergen Lock Date: Wed, 5 Sep 2012 20:37:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303722 - in head/multimedia/vlc: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 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: Wed, 05 Sep 2012 20:37:06 -0000 Author: nox Date: Wed Sep 5 20:37:05 2012 New Revision: 303722 URL: http://svn.freebsd.org/changeset/ports/303722 Log: - Add patch for (possible) compilation failure - even though the CXXFLAGS used in the PR are not supported. [1] - Fix runtime issue receiving UDP multicast streams. [2] - Bump PORTREVISION. PR: ports/171341 [1] Submitted by: arrowdodger <6yearold@gmail.com> [1] Reported by: Sulev-Madis Silber (via private email) [2] Added: head/multimedia/vlc/files/patch-include-vlc_common.h (contents, props changed) head/multimedia/vlc/files/patch-src-network-udp.c (contents, props changed) Modified: head/multimedia/vlc/Makefile Modified: head/multimedia/vlc/Makefile ============================================================================== --- head/multimedia/vlc/Makefile Wed Sep 5 19:21:31 2012 (r303721) +++ head/multimedia/vlc/Makefile Wed Sep 5 20:37:05 2012 (r303722) @@ -7,7 +7,7 @@ PORTNAME= vlc DISTVERSION= 2.0.3 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 3 CATEGORIES= multimedia audio ipv6 net www MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION:S/p/-pre/}/ \ Added: head/multimedia/vlc/files/patch-include-vlc_common.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/vlc/files/patch-include-vlc_common.h Wed Sep 5 20:37:05 2012 (r303722) @@ -0,0 +1,11 @@ +--- include/vlc_common.h.orig ++++ include/vlc_common.h +@@ -642,7 +642,7 @@ static inline unsigned popcount (unsigne + #endif + } + +-#ifdef __OS2__ ++#if defined(__OS2__) || defined(__FreeBSD__) + # undef bswap16 + # undef bswap32 + # undef bswap64 Added: head/multimedia/vlc/files/patch-src-network-udp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/vlc/files/patch-src-network-udp.c Wed Sep 5 20:37:05 2012 (r303722) @@ -0,0 +1,11 @@ +--- src/network/udp.c.orig ++++ src/network/udp.c +@@ -383,7 +383,7 @@ int net_Subscribe (vlc_object_t *obj, in + { + /* MCAST_JOIN_GROUP was introduced to OS X in v10.7, but it doesn't work, + * so ignore it to use the same code as on 10.5 or 10.6 */ +-#if defined (MCAST_JOIN_GROUP) && !defined (__APPLE__) ++#if defined (MCAST_JOIN_GROUP) && !defined (__APPLE__) && !defined (__FreeBSD__) + /* Agnostic SSM multicast join */ + int level; + struct group_req gr;