summaryrefslogtreecommitdiff
path: root/filesystems
diff options
context:
space:
mode:
authormarino <marino@pkgsrc.org>2012-08-17 13:02:49 +0000
committermarino <marino@pkgsrc.org>2012-08-17 13:02:49 +0000
commit87c6d07fc4e149e5c07627b3ca0d8d617885af32 (patch)
treeea94a3f13fba871df84df81cf3bfa182757901f6 /filesystems
parent5421c8c2f62ee6905a9bc75d9f54ac0a22425383 (diff)
downloadpkgsrc-87c6d07fc4e149e5c07627b3ca0d8d617885af32.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')
-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"