From 9483570dadbe5675dbae5c0e8447225e8e880825 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Sat, 23 Mar 2013 19:24:30 +0100 Subject: fuse.pc: make the pthread library private The pthread library is not required to link to fuse, as there is no explicit usage of it in fuse headers. On the other hand, it is needed when statically linking to fuse, so move it as private library. * fuse.pc.in (Libs): Move -lpthread ... (Libs.private): ... here. --- fuse.pc.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fuse.pc.in b/fuse.pc.in index e93994363..a5181ff18 100644 --- a/fuse.pc.in +++ b/fuse.pc.in @@ -6,5 +6,6 @@ includedir=@includedir@ Name: fuse Description: Filesystem in Userspace Version: 2.6.5 -Libs: -L${libdir} -lfuse -lpthread +Libs: -L${libdir} -lfuse +Libs.private: -lpthread Cflags: -I${includedir}/fuse -D_FILE_OFFSET_BITS=64 -- cgit v1.2.3