diff options
author | Guido Falsi <madpilot@FreeBSD.org> | 2015-02-10 04:44:13 +0800 |
---|---|---|
committer | Guido Falsi <madpilot@FreeBSD.org> | 2015-02-10 04:44:13 +0800 |
commit | 158c40c01d8e5ea2a10be7ff2f5305646c8315e3 (patch) | |
tree | 9ac324c9ac92c64f61329c60c6701a5aaf5497d4 /multimedia | |
parent | 2f7415db3531b18f060014f62338cdaefd2cfdf5 (diff) | |
download | freebsd-ports-gnome-158c40c01d8e5ea2a10be7ff2f5305646c8315e3.tar.gz freebsd-ports-gnome-158c40c01d8e5ea2a10be7ff2f5305646c8315e3.tar.zst freebsd-ports-gnome-158c40c01d8e5ea2a10be7ff2f5305646c8315e3.zip |
Avoid a build error with clang on certain configurations.
PR: 197405
Submitted by: Kevin Zheng <kevinz5000@gmail.com>
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/libva/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/multimedia/libva/Makefile b/multimedia/libva/Makefile index 3aff8afacc4e..bce0d3eb79ea 100644 --- a/multimedia/libva/Makefile +++ b/multimedia/libva/Makefile @@ -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 |