From owner-svn-ports-head@FreeBSD.ORG Mon May 18 18:41:17 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B07A97B; Mon, 18 May 2015 18:41:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0931A1221; Mon, 18 May 2015 18:41:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4IIfG4Y059849; Mon, 18 May 2015 18:41:16 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4IIfGxb059848; Mon, 18 May 2015 18:41:16 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201505181841.t4IIfGxb059848@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Mon, 18 May 2015 18:41:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386697 - head/net/mediastreamer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Mon, 18 May 2015 18:41:17 -0000 Author: tijl Date: Mon May 18 18:41:16 2015 New Revision: 386697 URL: https://svnweb.freebsd.org/changeset/ports/386697 Log: Fix non-x86 builds by using arc4random(3) instead of random(3) + rdtsc (x86 instruction). PR: 200289 Modified: head/net/mediastreamer/Makefile Modified: head/net/mediastreamer/Makefile ============================================================================== --- head/net/mediastreamer/Makefile Mon May 18 18:20:22 2015 (r386696) +++ head/net/mediastreamer/Makefile Mon May 18 18:41:16 2015 (r386697) @@ -3,6 +3,7 @@ PORTNAME= mediastreamer PORTVERSION= 2.11.2 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SAVANNAH/linphone/mediastreamer @@ -24,7 +25,7 @@ CONFIGURE_ARGS= --disable-alsa --disable --disable-silent-rules --disable-strict \ --with-gsm=${LOCALBASE} --with-srtp=${LOCALBASE} \ --with-polarssl=${LOCALBASE} xxd_found=yes -CPPFLAGS+= -I${LOCALBASE}/include +CPPFLAGS+= -I${LOCALBASE}/include -DHAVE_ARC4RANDOM LIBS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip USES= gettext-tools gmake libtool pathfix pkgconfig