diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-05-02 10:08:31 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-05-02 10:08:31 +0000 |
commit | c6a7121dc4ee48bd8492f24f5a6b0633a323b3c3 (patch) | |
tree | 7fbca616147e9e01b1b2b210262361410420e9b2 /multimedia | |
parent | 095560f145966f93002ab3147a24ba1b88831c01 (diff) | |
download | freebsd-ports-c6a7121dc4ee48bd8492f24f5a6b0633a323b3c3.zip |
multimedia/ustreamer: fix build with GCC-based architectures
Add USES=compiler:c11 to fix:
cc1: error: unrecognized command line option "-std=c11"
Approved by: mentors (implicit approval)
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/ustreamer/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/ustreamer/Makefile b/multimedia/ustreamer/Makefile index 9fe1d8378812..a71f72bc8130 100644 --- a/multimedia/ustreamer/Makefile +++ b/multimedia/ustreamer/Makefile @@ -15,7 +15,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat LIB_DEPENDS= libevent.so:devel/libevent \ libuuid.so:misc/e2fsprogs-libuuid -USES= gmake jpeg localbase:ldflags +USES= compiler:c11 gmake jpeg localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= pi-kvm |