diff options
author | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2012-10-10 21:37:47 +0000 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2012-10-10 21:37:47 +0000 |
commit | f9c314d07c9df284ee02a28aa084d98bfb4ab0fc (patch) | |
tree | e2596c3c3d5232c05f40a67b9cd045f0498df9b5 /pc | |
parent | adfcc2112ef230d43978f0ad4f59c9d3997f9a4a (diff) |
efl: do not support old pkg-config.
if the distro still wants to support the SUPER OLD pkg-config, then it
will have to fix the generated .pc before installing them:
{{{
sed -i 's/^Requires.private:/Requires:/g' pc/*.pc
}}}
SVN revision: 77818
Diffstat (limited to 'pc')
-rw-r--r-- | pc/eet.pc.in | 2 | ||||
-rw-r--r-- | pc/eina.pc.in | 2 | ||||
-rw-r--r-- | pc/eo.pc.in | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/pc/eet.pc.in b/pc/eet.pc.in index ee958878b..af3304cf3 100644 --- a/pc/eet.pc.in +++ b/pc/eet.pc.in @@ -6,7 +6,7 @@ includedir=@includedir@ Name: eet Description: Library for speedy data storage, retrieval, and compression Version: @VERSION@ -@pkgconfig_requires_private@: @requirements_pc_eet@ +Requires.private: @requirements_pc_eet@ Libs: -L${libdir} -leet Libs.private: @requirements_libs_eet@ -lm Cflags: -I${includedir}/eet-@VMAJ@ diff --git a/pc/eina.pc.in b/pc/eina.pc.in index 95b815b05..c45b84f7d 100644 --- a/pc/eina.pc.in +++ b/pc/eina.pc.in @@ -5,7 +5,7 @@ includedir=@includedir@ Name: Eina Description: A Library that implements fast data types and miscellaneous tools -@pkgconfig_requires_private@: @requirements_pc_eina@ +Requires.private: @requirements_pc_eina@ Version: @VERSION@ Libs: -L${libdir} -leina @EFL_PTHREAD_LIBS@ Libs.private: @EFL_PTHREAD_LIBS@ @requirements_libs_eina@ -lm diff --git a/pc/eo.pc.in b/pc/eo.pc.in index 9abb5260c..a58711bd4 100644 --- a/pc/eo.pc.in +++ b/pc/eo.pc.in @@ -6,7 +6,7 @@ includedir=@includedir@ Name: Eo Description: EFL's generic object system library. Version: @PACKAGE_VERSION@ -@pkgconfig_requires_private@: @requirements_pc_eo@ +Requires.private: @requirements_pc_eo@ Libs: -L${libdir} -leo Libs.private: Cflags: -I${includedir}/eo-@VMAJ@ |