Fri Aug 17 13:02:49 2012 UTC ()
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.


(marino)
diff -r1.3 -r1.4 pkgsrc/filesystems/fuse-chironfs/Makefile

cvs diff -r1.3 -r1.4 pkgsrc/filesystems/fuse-chironfs/Makefile (expand / switch to unified diff)

--- pkgsrc/filesystems/fuse-chironfs/Makefile 2009/07/08 16:22:44 1.3
+++ pkgsrc/filesystems/fuse-chironfs/Makefile 2012/08/17 13:02:49 1.4
@@ -1,19 +1,21 @@ @@ -1,19 +1,21 @@
1# $NetBSD: Makefile,v 1.3 2009/07/08 16:22:44 joerg Exp $ 1# $NetBSD: Makefile,v 1.4 2012/08/17 13:02:49 marino Exp $
2# 2#
3 3
4DISTNAME= chironfs-1.1.1 4DISTNAME= chironfs-1.1.1
5PKGNAME= fuse-chironfs-1.1.1 5PKGNAME= fuse-chironfs-1.1.1
6PKGREVISION= 1 6PKGREVISION= 1
7CATEGORIES= filesystems 7CATEGORIES= filesystems
8MASTER_SITES= http://chironfs.googlecode.com/files/ 8MASTER_SITES= http://chironfs.googlecode.com/files/
9 9
10MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://code.google.com/p/chironfs/ 11HOMEPAGE= http://code.google.com/p/chironfs/
12COMMENT= Replicating file system 12COMMENT= Replicating file system
13 13
14PKG_DESTDIR_SUPPORT= user-destdir 14PKG_DESTDIR_SUPPORT= user-destdir
15 15
16GNU_CONFIGURE= yes 16GNU_CONFIGURE= yes
17 17
 18LDFLAGS.DragonFly+= -lpthread
 19
18.include "../../mk/fuse.buildlink3.mk" 20.include "../../mk/fuse.buildlink3.mk"
19.include "../../mk/bsd.pkg.mk" 21.include "../../mk/bsd.pkg.mk"