svn commit: r465718 - head/sysutils/unieject

Ed Maste emaste at FreeBSD.org
Tue Mar 27 15:31:00 UTC 2018


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


More information about the svn-ports-all mailing list