svn commit: r378753 - head/multimedia/libva

Guido Falsi madpilot at FreeBSD.org
Mon Feb 9 20:44:14 UTC 2015


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 <kevinz5000 at gmail.com>

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
 


More information about the svn-ports-all mailing list