commit b19e306303b86ee649249a34817b4398190e1fc1 Author: Christophe Fergeau <cferg...@redhat.com> Date: Fri Jul 22 18:18:52 2011 +0200
enable udev by default udev is the preferred way of reacting to device hotplug events, default to building libgpod udev helpers. They can still be explicitly disabled if needed. configure.ac | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) --- diff --git a/configure.ac b/configure.ac index b0da6ae..2078a8b 100644 --- a/configure.ac +++ b/configure.ac @@ -161,16 +161,16 @@ AM_CONDITIONAL(HAVE_LIBIMOBILEDEVICE, test x"$enable_libimobiledevice" = xyes) dnl *********************************************************************** dnl * udev can be used to run a callout as an alternative to the hal callout dnl * nowadays (2009), it's the recommended way of having callouts, so -dnl * it should be preferred over HAL +dnl * it should be preferred over HAL, and it's enabled by default. dnl *********************************************************************** AC_ARG_ENABLE(udev, [AS_HELP_STRING([--enable-udev],[Enable udev callout])], - [if test $enableval = "yes" ; then - enable_udev=yes + [if test x"$enableval" = "xno" ; then + enable_udev=no else - enable_udev=no + enable_udev=yes fi], - [enable_udev=no]) + [enable_udev=yes]) AM_CONDITIONAL(USE_UDEV, test x"$enable_udev" = xyes) AC_SUBST([udevdir], [/lib/udev]) ------------------------------------------------------------------------------ Storage Efficiency Calculator This modeling tool is based on patent-pending intellectual property that has been used successfully in hundreds of IBM storage optimization engage- ments, worldwide. Store less, Store more with what you own, Move data to the right place. Try It Now! http://www.accelacomm.com/jaw/sfnl/114/51427378/ _______________________________________________ gtkpod-cvs2 mailing list gtkpod-cvs2@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2