- add missing configure check that broke stopping the daemon

- also fix default config to add a missing required option
This commit is contained in:
Simo Sorce 2009-06-11 15:07:18 +00:00
parent 34dc95e4aa
commit c801bd26a0
3 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,19 @@
From da891b9cd5a17c65299f84db507181fd74a7a6bf Mon Sep 17 00:00:00 2001
From: Stephen Gallagher <sgallagh@redhat.com>
Date: Thu, 11 Jun 2009 08:46:43 -0400
Subject: [PATCH] Add missing configure check for getpgrp
---
server/util/signal.m4 | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/server/util/signal.m4 b/server/util/signal.m4
index c6d7f72..a778020 100644
--- a/server/util/signal.m4
+++ b/server/util/signal.m4
@@ -1 +1 @@
-AC_CHECK_FUNCS(sigprocmask sigblock sigaction)
+AC_CHECK_FUNCS(sigprocmask sigblock sigaction getpgrp)
--
1.6.2.2

View File

@ -62,6 +62,7 @@ description = Domains served by SSSD
; maxId = 999
; legacy = FALSE
; magicPrivateGroups = TRUE
; provider = local
# Example LDAP domain that uses the proxy backend and the standard nss_ldap
# and pam_ldap modules (Useful until we have good working native ldap backends).

View File

@ -1,6 +1,6 @@
Name: sssd
Version: 0.4.1
Release: 0%{?dist}
Release: 1%{?dist}
Group: Applications/System
Summary: System Security Services Daemon
@ -13,6 +13,7 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
### Patches ###
Patch010: sssd-0.4.1-debug_fn.patch
Patch011: sssd-0.4.1-conf_check.patch
### Dependencies ###
@ -56,6 +57,7 @@ services for projects like FreeIPA.
%setup -q
%patch010 -p1 -b .debug_fn
%patch011 -p1 -b .conf_check
%build
%configure \
@ -129,6 +131,10 @@ if [ $1 -ge 1 ] ; then
fi
%changelog
* Thu Jun 11 2009 Simo Sorce <ssorce@redhat.com> - 0.4.1-1
- add missing configure check that broke stopping the daemon
- also fix default config to add a missing required option
* Mon Jun 8 2009 Simo Sorce <ssorce@redhat.com> - 0.4.1-0
- latest upstream release.
- also add a patch that fixes debugging output (potential segfault)