Re: [systemd-devel] [PATCH] Allow configuring without systemd-only dependencies

2012-06-09 Thread Bryan Kadzban
William Hubbs wrote: > On Thu, Jun 07, 2012 at 11:35:00PM -0700, Bryan Kadzban wrote: >> Some dependencies (intltool, m4, dbus, pkg-config, PAM) are only >> required or useful for systemd, not for udev. Leave these required by >> default, but allow them to be made optional if the right flag is use

Re: [systemd-devel] [PATCH] Allow configuring without systemd-only dependencies

2012-06-09 Thread William Hubbs
On Thu, Jun 07, 2012 at 11:35:00PM -0700, Bryan Kadzban wrote: > Some dependencies (intltool, m4, dbus, pkg-config, PAM) are only > required or useful for systemd, not for udev. Leave these required by > default, but allow them to be made optional if the right flag is used to > ./configure. How a

[systemd-devel] breaking up Makefile.am

2012-06-09 Thread William Hubbs
All, this series of patches will break up Makefile.am into 3 modules which are included by the main Makefile. This is designed to make it possible to enable or disable the udev or systemd portions of the build using configure switches. Currently everything is still built, because there are no co

[systemd-devel] [PATCH 1/3] build-sys: move common libraries to separate Makefile

2012-06-09 Thread William Hubbs
--- Makefile-shared.am | 98 +++ Makefile.am| 99 +--- 2 files changed, 99 insertions(+), 98 deletions(-) create mode 100644 Makefile-shared.am diff --git a/Makefile-shared.am b/Makefile-s

[systemd-devel] [PATCH 2/3] build-sys: move udev build to a separate makefile

2012-06-09 Thread William Hubbs
--- Makefile-udev.am | 671 + Makefile.am | 675 +- 2 files changed, 674 insertions(+), 672 deletions(-) create mode 100644 Makefile-udev.am diff --git a/Makefile-udev.am b/Makefile-ude