diff options
author | kwm <kwm@FreeBSD.org> | 2015-06-17 20:24:38 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2015-06-17 20:24:38 +0800 |
commit | b27d1f7d7e145b0df4827bf337923e77cb396579 (patch) | |
tree | 86fe91d8edb402fd7b7f9a554ca74ca5404db92c /multimedia | |
parent | 6b75a2d85c42d72563423a74a59ecd415f748570 (diff) | |
download | freebsd-ports-graphics-b27d1f7d7e145b0df4827bf337923e77cb396579.tar.gz freebsd-ports-graphics-b27d1f7d7e145b0df4827bf337923e77cb396579.tar.zst freebsd-ports-graphics-b27d1f7d7e145b0df4827bf337923e77cb396579.zip |
Fix the build of libv4l (and v4l-utils) by requiring iconv. Don't depend
on other ports to provide it. This would break when the NLS option is unset
at a gloval level.
Submitted by: mat@ (via his 9.x no-NLS builder)
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/libv4l/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/libv4l/Makefile b/multimedia/libv4l/Makefile index 9b14fa02c61..788cb0eb036 100644 --- a/multimedia/libv4l/Makefile +++ b/multimedia/libv4l/Makefile @@ -30,7 +30,7 @@ LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/graphics/jpeg \ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -USES+= gmake libtool pathfix pkgconfig +USES+= gmake iconv libtool pathfix pkgconfig USE_LDCONFIG= yes CONFIGURE_ARGS= --enable-libdvbv5 \ --disable-qv4l2 \ |