summaryrefslogtreecommitdiff
path: root/pc
diff options
context:
space:
mode:
authorGustavo Sverzut Barbieri <barbieri@gmail.com>2013-01-17 18:55:32 +0000
committerGustavo Sverzut Barbieri <barbieri@gmail.com>2013-01-17 18:55:32 +0000
commit88f2d266085cdf75bab432d4cc08f481f1cf5c3c (patch)
tree37a4af74235a2c544c0462fac713bd652567b51e /pc
parentc757cba26f172dfa04c1d1fe75b68db373150214 (diff)
downloadefl-88f2d266085cdf75bab432d4cc08f481f1cf5c3c.tar.gz
don't mix private and public libraries dependencies.
when I fixed eina's dependency on -lpthread I used all the libraries eina links to. But we should just do with -lpthread as it's a public dependency... that was in eina.pc.in and I missed. Now we have EFL_ADD_PUBLIC_LIBS() that will register for requirements_public_libs_name and use internally when eina is used. This should also fix the problem by Arvind with gcrypt. SVN revision: 82942
Diffstat (limited to 'pc')
-rw-r--r--pc/eina.pc.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/pc/eina.pc.in b/pc/eina.pc.in
index c5a10f2e1a..e904c9ede9 100644
--- a/pc/eina.pc.in
+++ b/pc/eina.pc.in
@@ -7,6 +7,6 @@ Name: Eina
Description: A Library that implements fast data types and miscellaneous tools
Requires.private: @requirements_pc_eina@
Version: @VERSION@
-Libs: -L${libdir} -leina @EFL_PTHREAD_LIBS@
-Libs.private: @EFL_PTHREAD_LIBS@ @requirements_libs_eina@
+Libs: -L${libdir} -leina @requirements_public_libs_eina@
+Libs.private: @requirements_libs_eina@
Cflags: -I${includedir}/eina-@VMAJ@ -I${includedir}/eina-@VMAJ@/eina