|
From: Enlightenment C. <no...@cv...> - 2008-03-03 10:31:01
|
Enlightenment CVS committal
Author : raster
Project : e17
Module : apps/e
Dir : e17/apps/e
Modified Files:
configure.in
Log Message:
oops - pass sysev
===================================================================
RCS file: /cvs/e/e17/apps/e/configure.in,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -3 -r1.202 -r1.203
--- configure.in 25 Jan 2008 03:35:43 -0000 1.202
+++ configure.in 3 Mar 2008 10:30:30 -0000 1.203
@@ -201,13 +201,20 @@
ecore-txt
], [
have_temp="yes"
+ have_battery="yes"
# This test will succeed as these modules are also checked before
PKG_CHECK_MODULES(TEMPERATURE, [
ecore
ecore-file
])
+ PKG_CHECK_MODULES(BATTERY, [
+ ecore
+ ecore-file
+ ecore-con
+ ])
], [ have_temp="no"])
AM_CONDITIONAL(HAVE_TEMPERATURE, test x$have_temp = "xyes")
+AM_CONDITIONAL(HAVE_BATTERY, test x$have_bat = "xyes")
PKG_CHECK_MODULES(E_DBUS, edbus, have_edbus=yes, have_edbus=no)
PKG_CHECK_MODULES(E_HAL, ehal, have_ehal=yes, have_ehal=no)
|