summaryrefslogtreecommitdiff
path: root/filesystems/fuse-chironfs
diff options
context:
space:
mode:
authormarino <marino>2012-08-17 13:02:49 +0000
committermarino <marino>2012-08-17 13:02:49 +0000
commitea791693d6d3c5a7b2269080659d3f95ceb1ae74 (patch)
treeea94a3f13fba871df84df81cf3bfa182757901f6 /filesystems/fuse-chironfs
parent6f118b9ad85dd4e242622b1bdd406f047ce96595 (diff)
downloadpkgsrc-ea791693d6d3c5a7b2269080659d3f95ceb1ae74.tar.gz
filesystems/fuse-chironfs: LDFLAGS.DragonFly+= -lpthread
The package can't find pthread_create without this LDFLAG. I tried used the mk-pthread buildlink and it didn't fix it. I am not sure why only DragonFly sees the problem, so leaving it as a platform-specific fix for now is probably wise.
Diffstat (limited to 'filesystems/fuse-chironfs')
-rw-r--r--filesystems/fuse-chironfs/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/filesystems/fuse-chironfs/Makefile b/filesystems/fuse-chironfs/Makefile
index 34ada2aeb75..4bbcd5a54b7 100644
--- a/filesystems/fuse-chironfs/Makefile
+++ b/filesystems/fuse-chironfs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2009/07/08 16:22:44 joerg Exp $
+# $NetBSD: Makefile,v 1.4 2012/08/17 13:02:49 marino Exp $
#
DISTNAME= chironfs-1.1.1
@@ -15,5 +15,7 @@ PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
+LDFLAGS.DragonFly+= -lpthread
+
.include "../../mk/fuse.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"