Hi!
 
I discovered a small bug in e_dbus configure script. Due to the fact it
doesn't check the value of option passed to configure and explicitly
sets the value to "no", passing, for example, --enable_ehal to it,
effectively disables ehal. The same for other configure options.
 
The patch is attached.
 
Thanks!

-- 
Stanislav Sedov
ST4096-RIPE
--- configure.in.orig	2008-02-24 02:02:11.000000000 +0300
+++ configure.in	2008-02-24 02:03:38.000000000 +0300
@@ -27,19 +27,19 @@
 
 dnl Check enabled modules to build
 AC_ARG_ENABLE(ehal,
-				  AC_HELP_STRING([--disable-ehal], 
+				  AC_HELP_STRING([--disable-ehal],
 									  [Disable ehal build]),
-				  [enable_ehal="no"], 
+				  [enable_ehal=$enableval],
 				  [enable_ehal="yes"])
 AC_ARG_ENABLE(enm,
 				  AC_HELP_STRING([--disable-enm], 
 									  [Disable enm build]),
-				  [enable_enm="no"], 
+				  [enable_enm=$enableval],
 				  [enable_enm="yes"])
 AC_ARG_ENABLE(enotify,
 				  AC_HELP_STRING([--disable-enotify], 
 									  [Disable enotify build]),
-				  [enable_enotify="no"], 
+				  [enable_enotify=$enableval],
 				  [enable_enotify="yes"])
 
 
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to