PolicyKit ChangeLog,1.19,1.20 configure.in,1.6,1.7
David Zeuthen
david at kemper.freedesktop.org
Tue Jun 6 04:55:52 PDT 2006
Update of /cvs/hal/PolicyKit
In directory kemper:/tmp/cvs-serv22113
Modified Files:
ChangeLog configure.in
Log Message:
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
libraries.
Attached patch adds new configure checks; pam-polkit-console.c may
need alternate behaviour if pam_vsyslog is missing (using straight
vsyslog?).
* configure.in,
* pam-polkit-console/pam-polkit-console.c: (_pam_log):
* doc/TODO:
Index: ChangeLog
===================================================================
RCS file: /cvs/hal/PolicyKit/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- ChangeLog 5 Jun 2006 23:39:00 -0000 1.19
+++ ChangeLog 6 Jun 2006 11:55:50 -0000 1.20
@@ -1,3 +1,18 @@
+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
+ libraries.
+
+ Attached patch adds new configure checks; pam-polkit-console.c may
+ need alternate behaviour if pam_vsyslog is missing (using straight
+ vsyslog?).
+
+ * configure.in,
+ * pam-polkit-console/pam-polkit-console.c: (_pam_log):
+ * doc/TODO:
+
2006-06-05 David Zeuthen <davidz at redhat.com>
Lots of changes! Almost ready for 0.2 release.
Index: configure.in
===================================================================
RCS file: /cvs/hal/PolicyKit/configure.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- configure.in 5 Jun 2006 23:39:00 -0000 1.6
+++ configure.in 6 Jun 2006 11:55:50 -0000 1.7
@@ -262,6 +262,9 @@
AC_SUBST(HAVE_PAM)
AC_SUBST(AUTH_LIBS)
+AC_CHECK_HEADER(security/pam_modutil.h, [AC_DEFINE(HAVE_PAM_MODUTIL_H, [], "Have pam_modutil.h")])
+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(os-type, [ --with-os-type=<os> distribution or OS (redhat)])
More information about the hal-commit
mailing list