svn commit: r465749 - head/www/cgihtml

Ed Maste emaste at FreeBSD.org
Tue Mar 27 20:46:45 UTC 2018


Author: emaste (src committer)
Date: Tue Mar 27 20:46:44 2018
New Revision: 465749
URL: https://svnweb.freebsd.org/changeset/ports/465749

Log:
  www/cgihtml: set LLD_UNSAFE
  
  This port passes an unusual option to the linker that is accepted by
  ld.bfd but rejected by ld.lld.  Linking with lld fails with:
  
  ld: error: -O: number expected, but got 'string-lib.o'
  
  PR:		226992
  Approved by:	portmgr (LLD_UNSAFE blanket)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/www/cgihtml/Makefile

Modified: head/www/cgihtml/Makefile
==============================================================================
--- head/www/cgihtml/Makefile	Tue Mar 27 20:34:27 2018	(r465748)
+++ head/www/cgihtml/Makefile	Tue Mar 27 20:46:44 2018	(r465749)
@@ -12,9 +12,8 @@ MASTER_SITES=	http://www.eekim.com/software/cgihtml/ \
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Library that simplifies the task of writing CGI programs in C
 
-BROKEN_aarch64=		fails to link: -O: number expected, but got
-
 USE_LDCONFIG=	yes
+LLD_UNSAFE=	yes
 
 OPTIONS_DEFINE=	DOCS
 


More information about the svn-ports-all mailing list