svn commit: r495559 - head/comms/scrcpy

Mark Linimon linimon at FreeBSD.org
Wed Mar 13 05:28:07 UTC 2019


Author: linimon
Date: Wed Mar 13 05:28:06 2019
New Revision: 495559
URL: https://svnweb.freebsd.org/changeset/ports/495559

Log:
  Fix build on gcc-based architectures:
  
    cc1: error: unrecognized command line option "-std=c11"
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/comms/scrcpy/Makefile

Modified: head/comms/scrcpy/Makefile
==============================================================================
--- head/comms/scrcpy/Makefile	Wed Mar 13 05:27:05 2019	(r495558)
+++ head/comms/scrcpy/Makefile	Wed Mar 13 05:28:06 2019	(r495559)
@@ -17,7 +17,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 LIB_DEPENDS=	libavcodec.so:multimedia/ffmpeg
 RUN_DEPENDS=	adb:devel/android-tools-adb
 
-USES=		meson pkgconfig sdl
+USES=		compiler:c++11-lang meson pkgconfig sdl
 USE_SDL=	sdl2
 
 USE_GITHUB=	yes


More information about the svn-ports-all mailing list