From 4821f141a7b6482abd0e33b0732f3e65f6126b2c Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Fri, 2 Oct 2009 17:21:36 +0000 Subject: [PATCH] * use Requires.private field in edje.pc if pkg-config 0.22 or later is installed. We list in it the required packages needed to compile edje. * remove uneeded flags that are in Libs.private (those from the packages that are listed in Requires.private) SVN revision: 42861 --- legacy/edje/configure.ac | 11 ++++++++++- legacy/edje/edje.pc.in | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/legacy/edje/configure.ac b/legacy/edje/configure.ac index dd82a5185c..890aad0b3e 100644 --- a/legacy/edje/configure.ac +++ b/legacy/edje/configure.ac @@ -165,6 +165,15 @@ AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != : ]) PKG_PROG_PKG_CONFIG +# Check whether pkg-config supports Requires.private + +if $PKG_CONFIG --atleast-pkgconfig-version 0.22; then + pkgconfig_requires_private="Requires.private" +else + pkgconfig_requires_private="Requires" +fi +AC_SUBST(pkgconfig_requires_private) + ### Checks for libraries @@ -220,7 +229,7 @@ PKG_CHECK_MODULES([ECORE_IMF], [ AC_DEFINE(HAVE_ECORE_IMF, 1, [Input Method Support for Edje Entry]) have_ecore_imf="yes" - requirement_edje="ecore-imf ecore-imf-evas ${requirement_edje}" + requirement_edje="ecore-imf-evas ecore-imf ${requirement_edje}" ], [have_ecore_imf="no"]) diff --git a/legacy/edje/edje.pc.in b/legacy/edje/edje.pc.in index 7d2d4bf9d0..48412ff4a9 100644 --- a/legacy/edje/edje.pc.in +++ b/legacy/edje/edje.pc.in @@ -7,8 +7,8 @@ datadir=@datadir@/edje Name: edje Description: Enlightened graphical design and layout engine. -Requires: @requirement_edje@ +@pkgconfig_requires_private@: @requirement_edje@ Version: @VERSION@ Libs: -L${libdir} -ledje -Libs.private: @EDJE_LIBS@ @EVIL_LIBS@ @ECORE_IMF_LIBS@ +Libs.private: Cflags: -I${includedir}