svn commit: r514891 - head/devel/omniORB

Piotr Kubaj pkubaj at FreeBSD.org
Sun Oct 20 12:51:01 UTC 2019


Author: pkubaj
Date: Sun Oct 20 12:51:00 2019
New Revision: 514891
URL: https://svnweb.freebsd.org/changeset/ports/514891

Log:
  devel/omniORB: fix build on GCC architectures
  
  Use newer compiler:
  posix.cc:605: error: cannot convert 'pthread**' to 'pthread*' for argument '1' to 'int pthread_detach(pthread*)'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/devel/omniORB/Makefile

Modified: head/devel/omniORB/Makefile
==============================================================================
--- head/devel/omniORB/Makefile	Sun Oct 20 12:10:52 2019	(r514890)
+++ head/devel/omniORB/Makefile	Sun Oct 20 12:51:00 2019	(r514891)
@@ -15,7 +15,8 @@ LICENSE=	GPLv2
 BROKEN_SSL=	openssl111
 BROKEN_SSL_REASON_openssl111=	member access into incomplete type 'DH' (aka 'dh_st')
 
-USES=		gmake pkgconfig python tar:bzip2 shebangfix ssl
+USES=		compiler:c++11-lang gmake pkgconfig python tar:bzip2 \
+		shebangfix ssl
 
 CONFLICTS=	omniORB41-4.1.*
 SONUM=		3


More information about the svn-ports-head mailing list