Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Mar 2018 15:31:00 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r465718 - head/sysutils/unieject
Message-ID:  <201803271531.w2RFV02c096965@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste (src committer)
Date: Tue Mar 27 15:31:00 2018
New Revision: 465718
URL: https://svnweb.freebsd.org/changeset/ports/465718

Log:
  sysutils/unieject: set LLD_UNSAFE
  
  unieject fails to link with lld as the system linker due to shared
  library protected visibility symbol preemption issues.  Set LLD_UNSAFE
  to use ld.bfd.
  
  Errors are of the form:
  
  /usr/bin/ld: error: cannot preempt symbol: libunieject_getdevice
  >>> defined in ./.libs/libunieject.so
  >>> referenced by unieject.c
  >>>               unieject-unieject.o:(main)
  
  PR:		214864
  Approved by:	portmgr (LLD_UNSAFE blanket)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sysutils/unieject/Makefile

Modified: head/sysutils/unieject/Makefile
==============================================================================
--- head/sysutils/unieject/Makefile	Tue Mar 27 15:27:06 2018	(r465717)
+++ head/sysutils/unieject/Makefile	Tue Mar 27 15:31:00 2018	(r465718)
@@ -22,6 +22,7 @@ USE_GNOME=	glib20
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-doc
 USE_LDCONFIG=	yes
+LLD_UNSAFE=	yes
 INSTALL_TARGET=	install-strip
 
 CPPFLAGS+=	-I${LOCALBASE}/include



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