summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPino Toscano <toscano.pino@tiscali.it>2013-03-23 19:24:30 +0100
committerPino Toscano <toscano.pino@tiscali.it>2013-03-23 19:24:30 +0100
commit9483570dadbe5675dbae5c0e8447225e8e880825 (patch)
tree3b69ddb6549efc8169531bf35612d38044bd2db0
parentdc196ae34d9077baf84dacff328bd3bbe2532128 (diff)
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.
-rw-r--r--fuse.pc.in3
1 files changed, 2 insertions, 1 deletions
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