Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Nov 2015 13:25:38 +0000 (UTC)
From:      Alexander Nedotsukov <bland@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r401703 - head/x11/nvidia-settings
Message-ID:  <201511151325.tAFDPctE056418@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bland
Date: Sun Nov 15 13:25:38 2015
New Revision: 401703
URL: https://svnweb.freebsd.org/changeset/ports/401703

Log:
  Fixup issue with implicit pthread linkage.
  
  Still curious to understand why it is needed at the first place as libgthread
  supposed to pull the dependency.
  
  PR:	203372

Modified:
  head/x11/nvidia-settings/Makefile

Modified: head/x11/nvidia-settings/Makefile
==============================================================================
--- head/x11/nvidia-settings/Makefile	Sun Nov 15 12:59:28 2015	(r401702)
+++ head/x11/nvidia-settings/Makefile	Sun Nov 15 13:25:38 2015	(r401703)
@@ -3,6 +3,7 @@
 
 PORTNAME=	nvidia-settings
 PORTVERSION=	355.11
+PORTREVISION=	1
 CATEGORIES=	x11
 
 MAINTAINER=	bland@FreeBSD.org
@@ -26,7 +27,7 @@ PLIST_FILES=	bin/nvidia-settings \
 		man/man1/nvidia-settings.1.gz \
 		lib/libnvidia-gtk2.so.${PORTVERSION}
 
-LDFLAGS+=	-Wl,--as-needed
+LDFLAGS+=	-pthread
 MAKE_ENV=	NV_USE_BUNDLED_LIBJANSSON=0 \
 		NV_VERBOSE= \
 		STRIP_CMD=${TRUE} \



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