svn commit: r545130 - head/sysutils/rsyncrypto

Piotr Kubaj pkubaj at FreeBSD.org
Sun Aug 16 18:59:14 UTC 2020


Author: pkubaj
Date: Sun Aug 16 18:59:13 2020
New Revision: 545130
URL: https://svnweb.freebsd.org/changeset/ports/545130

Log:
  sysutils/rsyncrypto: fix build on GCC architectures
  
  Use C++11 compiler:
  crypt_key.h:54: error: ISO C++ forbids declaration of 'unique_ptr' with no type

Modified:
  head/sysutils/rsyncrypto/Makefile

Modified: head/sysutils/rsyncrypto/Makefile
==============================================================================
--- head/sysutils/rsyncrypto/Makefile	Sun Aug 16 18:49:22 2020	(r545129)
+++ head/sysutils/rsyncrypto/Makefile	Sun Aug 16 18:59:13 2020	(r545130)
@@ -14,7 +14,7 @@ LICENSE=	GPLv2+
 LIB_DEPENDS=	libargtable2.so:devel/argtable
 RUN_DEPENDS=	rsync:net/rsync
 
-USES=		gmake localbase ssl tar:bzip2
+USES=		compiler:c++11-lang gmake localbase ssl tar:bzip2
 GNU_CONFIGURE=	yes
 
 PLIST_FILES=	bin/rsyncrypto \


More information about the svn-ports-head mailing list