hal ChangeLog,1.914,1.915 configure.in,1.130,1.131
David Zeuthen
david at kemper.freedesktop.org
Mon Jun 5 18:52:09 PDT 2006
Update of /cvs/hal/hal
In directory kemper:/tmp/cvs-serv20630
Modified Files:
ChangeLog configure.in
Log Message:
2006-06-05 David Zeuthen <davidz at redhat.com>
* configure.in, tools/Makefile.am: Patch from Joe Marcus Clarke
<marcus at freebsd.org> and Danny Kukawka <danny.kukawka at web.de> to
only install the backend we're building for.
Index: ChangeLog
===================================================================
RCS file: /cvs/hal/hal/ChangeLog,v
retrieving revision 1.914
retrieving revision 1.915
diff -u -d -r1.914 -r1.915
--- ChangeLog 5 Jun 2006 23:56:00 -0000 1.914
+++ ChangeLog 6 Jun 2006 01:52:07 -0000 1.915
@@ -1,5 +1,11 @@
2006-06-05 David Zeuthen <davidz at redhat.com>
-
+
+ * configure.in, tools/Makefile.am: Patch from Joe Marcus Clarke
+ <marcus at freebsd.org> and Danny Kukawka <danny.kukawka at web.de> to
+ only install the backend we're building for.
+
+2006-06-05 David Zeuthen <davidz at redhat.com>
+
* hald/hald_dbus.c:
(hald_exec_method): Export a new environment variable with the
unique name for callers system bus connection called
Index: configure.in
===================================================================
RCS file: /cvs/hal/hal/configure.in,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -d -r1.130 -r1.131
--- configure.in 5 Jun 2006 23:56:00 -0000 1.130
+++ configure.in 6 Jun 2006 01:52:07 -0000 1.131
@@ -219,12 +219,20 @@
*-*-solaris*)
HALD_BACKEND="solaris"
;;
- *)
+ *-*-freebsd*)
+ HALD_BACKEND="freebsd"
+ ;;
+ *-linux*)
HALD_BACKEND="linux2"
- ;;
+ ;;
+ *)
+ HALD_BACKEND="dummy"
+ ;;
esac
fi
+AM_CONDITIONAL(HALD_COMPILE_DUMMY, test x$HALD_BACKEND = xdummy, [Compiling for Dummy backend])
AM_CONDITIONAL(HALD_COMPILE_LINUX2, test x$HALD_BACKEND = xlinux2, [Compiling for Linux])
+AM_CONDITIONAL(HALD_COMPILE_FREEBSD, test x$HALD_BACKEND = xfreebsd, [Compiling for FreeBSD])
AM_CONDITIONAL(HALD_COMPILE_SOLARIS, test x$HALD_BACKEND = xsolaris, [Compiling for Solaris])
AC_SUBST(HALD_BACKEND)
More information about the hal-commit
mailing list