From owner-svn-ports-all@FreeBSD.ORG Mon Feb 9 20:44:14 2015 Return-Path: Delivered-To: svn-ports-all@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 12CC0BFF; Mon, 9 Feb 2015 20:44:14 +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 F34AAC1C; Mon, 9 Feb 2015 20:44:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t19KiDdK004216; Mon, 9 Feb 2015 20:44:13 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t19KiDkJ004215; Mon, 9 Feb 2015 20:44:13 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201502092044.t19KiDkJ004215@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 9 Feb 2015 20:44:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378753 - head/multimedia/libva X-SVN-Group: ports-head 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.18-1 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: Mon, 09 Feb 2015 20:44:14 -0000 Author: madpilot Date: Mon Feb 9 20:44:13 2015 New Revision: 378753 URL: https://svnweb.freebsd.org/changeset/ports/378753 QAT: https://qat.redports.org/buildarchive/r378753/ Log: Avoid a build error with clang on certain configurations. PR: 197405 Submitted by: Kevin Zheng Modified: head/multimedia/libva/Makefile Modified: head/multimedia/libva/Makefile ============================================================================== --- head/multimedia/libva/Makefile Mon Feb 9 20:36:52 2015 (r378752) +++ head/multimedia/libva/Makefile Mon Feb 9 20:44:13 2015 (r378753) @@ -21,10 +21,9 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --program-prefix=va USE_LDCONFIG= yes -CPPFLAGS+= -isystem${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib # prevent types conflict: videodev2.h vs. drm.h -CFLAGS+= -DHAVE_LINUX_INTEGER_TYPES +CFLAGS+= -I${LOCALBASE}/include -DHAVE_LINUX_INTEGER_TYPES OPTIONS_DEFINE= DEBUG