PolicyKit ChangeLog,1.20,1.21 configure.in,1.7,1.8
David Zeuthen
david at kemper.freedesktop.org
Tue Jun 6 07:48:29 PDT 2006
Update of /cvs/hal/PolicyKit
In directory kemper:/tmp/cvs-serv28998
Modified Files:
ChangeLog configure.in
Log Message:
2006-06-06 David Zeuthen <davidz at redhat.com>
Patch from Frederic Peters <fpeters at entrouvert.com>. jhbuild
monitors files being installed and prevents them from being
written out of its target directory. This means HAL now prevents
jhautobuild[1] to complete since pam-polkit-console hardcodes
/lib/security. Attached is a patch with a configure
option (--with-pam-module-dir) so it is possible to set an other
directory. [1] http://jhbuild.bxlug.be
* pam-polkit-console/Makefile.am:
* configure.in:
Index: ChangeLog
===================================================================
RCS file: /cvs/hal/PolicyKit/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- ChangeLog 6 Jun 2006 11:55:50 -0000 1.20
+++ ChangeLog 6 Jun 2006 14:48:27 -0000 1.21
@@ -1,5 +1,18 @@
2006-06-06 David Zeuthen <davidz at redhat.com>
+ Patch from Frederic Peters <fpeters at entrouvert.com>. jhbuild
+ monitors files being installed and prevents them from being
+ written out of its target directory. This means HAL now prevents
+ jhautobuild[1] to complete since pam-polkit-console hardcodes
+ /lib/security. Attached is a patch with a configure
+ option (--with-pam-module-dir) so it is possible to set an other
+ directory. [1] http://jhbuild.bxlug.be
+
+ * pam-polkit-console/Makefile.am:
+ * configure.in:
+
+2006-06-06 David Zeuthen <davidz at redhat.com>
+
Patch from Frederic Peters <fpeters at entrouvert.com>.
http://jhbuild.bxlug.be/builds/2006-06-06-0000/logs/PolicyKit/#build
shows a error when building newest PolicyKit with Debian PAM
Index: configure.in
===================================================================
RCS file: /cvs/hal/PolicyKit/configure.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- configure.in 6 Jun 2006 11:55:50 -0000 1.7
+++ configure.in 6 Jun 2006 14:48:27 -0000 1.8
@@ -266,6 +266,17 @@
AC_CHECK_HEADER(security/pam_ext.h, [AC_DEFINE(HAVE_PAM_EXT_H, [], "Have pam_ext.h")])
AC_CHECK_LIB(pam, pam_vsyslog, [AC_DEFINE(HAVE_PAM_VSYSLOG, [], "Have pam_vsyslog")])
+
+AC_ARG_WITH(pam-module-dir, [ --with-pam-module-dir=[dirname] directory to install PAM security module])
+if ! test -z "$with_pam_module_dir"; then
+ PAM_MODULE_DIR=$with_pam_module_dir
+else
+ PAM_MODULE_DIR="/lib/security"
+fi
+
+AC_SUBST(PAM_MODULE_DIR)
+
+
AC_ARG_WITH(os-type, [ --with-os-type=<os> distribution or OS (redhat)])
#### Check our operating system (distro-tweaks required)
@@ -378,6 +389,7 @@
localstatedir: ${LOCALSTATEDIR}
docdir: ${DOCDIR}
PAM prefix: ${PAM_PREFIX}
+ PAM module dir: ${PAM_MODULE_DIR}
compiler: ${CC}
cflags: ${CFLAGS}
More information about the hal-commit
mailing list