Patch from caro to fix ecore_config dependency checks during configure.in.

Ecore_Config depends on ecore_ipc, but that was never previously checked for.


SVN revision: 31045
This commit is contained in:
Christopher Michael 2007-07-28 19:54:40 +00:00
parent d2db2be7df
commit 73cd1d5643
1 changed files with 6 additions and 2 deletions

View File

@ -655,8 +655,12 @@ PKG_CHECK_MODULES(EET, [eet >= 0.9.10],
[ have_eet="no" ]
)
ECORE_CHECK_MODULE([Config], [yes], [$have_eet],
[requirements_ecore_config="$requirements_ecore_config eet"])
ecore_config_deps="no"
if test "x$have_eet" = "xyes" -a "x$have_ecore_ipc" = "xyes" ; then
ecore_config_deps="yes"
fi
ECORE_CHECK_MODULE([Config], [yes], [$ecore_config_deps],
[requirements_ecore_config="$requirements_ecore_config ecore-ipc eet"])
ECORE_CHECK_MODULE([File], [yes])