Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Oct 2019 12:51:01 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r514891 - head/devel/omniORB
Message-ID:  <201910201251.x9KCp1aE007420@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910201251.x9KCp1aE007420>