svn commit: r532071 - in head/devel: libevdevplus libuinputplus

Mark Linimon linimon at FreeBSD.org
Sun Apr 19 04:47:59 UTC 2020


Author: linimon
Date: Sun Apr 19 04:47:58 2020
New Revision: 532071
URL: https://svnweb.freebsd.org/changeset/ports/532071

Log:
  Fix build on GCC-based systems by adding c++11-lang to USES:
  
    /wrkdirs/usr/ports/devel/libevdevPlus/work/libevdevPlus-0.1.1/CommonIncludes.hpp:17:25: error: unordered_set: No such file or directory
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/libevdevplus/Makefile
  head/devel/libuinputplus/Makefile

Modified: head/devel/libevdevplus/Makefile
==============================================================================
--- head/devel/libevdevplus/Makefile	Sun Apr 19 04:45:42 2020	(r532070)
+++ head/devel/libevdevplus/Makefile	Sun Apr 19 04:47:58 2020	(r532071)
@@ -13,7 +13,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BUILD_DEPENDS=	${LOCALBASE}/include/linux/uinput.h:devel/evdev-proto
 
-USES=	cmake localbase
+USES=	cmake compiler:c++11-lang localbase
 
 USE_GITHUB=	yes
 GH_PROJECT=	libevdevPlus

Modified: head/devel/libuinputplus/Makefile
==============================================================================
--- head/devel/libuinputplus/Makefile	Sun Apr 19 04:45:42 2020	(r532070)
+++ head/devel/libuinputplus/Makefile	Sun Apr 19 04:47:58 2020	(r532071)
@@ -13,7 +13,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BUILD_DEPENDS=	${LOCALBASE}/include/linux/uinput.h:devel/evdev-proto
 
-USES=		cmake localbase
+USES=		cmake compiler:c++11-lang localbase
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	YukiWorkshop


More information about the svn-ports-all mailing list