]> git.pld-linux.org Git - packages/sssd.git/blame - sssd-systemd.patch
- rediff patches
[packages/sssd.git] / sssd-systemd.patch
CommitLineData
ccdb83c2
JR
1diff -urNp -x '*.orig' sssd-1.13.4.org/Makefile.am sssd-1.13.4/Makefile.am
2--- sssd-1.13.4.org/Makefile.am 2021-03-03 21:59:13.565804202 +0100
3+++ sssd-1.13.4/Makefile.am 2021-03-03 21:59:13.715851718 +0100
4@@ -3455,7 +3455,8 @@ if WITH_JOURNALD
5 systemdconf_DATA += \
6 src/sysv/systemd/journal.conf
7 endif
8-else
9+endif
10+if HAVE_SYSV
11 if HAVE_SUSE
12 init_SCRIPTS += \
13 src/sysv/SUSE/sssd
14diff -urNp -x '*.orig' sssd-1.13.4.org/configure.ac sssd-1.13.4/configure.ac
15--- sssd-1.13.4.org/configure.ac 2016-04-13 16:48:41.000000000 +0200
16+++ sssd-1.13.4/configure.ac 2021-03-03 21:59:13.715851718 +0100
17@@ -207,7 +207,7 @@ if test x$HAVE_NSCD; then
18 fi
19
20 WITH_INITSCRIPT
21-if test x$initscript = xsystemd; then
22+if test x"${initscript%systemd}" != x"${initscript}"; then
23 WITH_SYSTEMD_UNIT_DIR
24 WITH_SYSTEMD_CONF_DIR
25 fi
26diff -urNp -x '*.orig' sssd-1.13.4.org/src/conf_macros.m4 sssd-1.13.4/src/conf_macros.m4
27--- sssd-1.13.4.org/src/conf_macros.m4 2016-04-13 16:48:41.000000000 +0200
28+++ sssd-1.13.4/src/conf_macros.m4 2021-03-03 21:59:13.715851718 +0100
29@@ -130,14 +130,15 @@ AC_DEFUN([WITH_INITSCRIPT],
38af2cc5
JB
30 fi
31
32 if test x"$with_initscript" = xsysv || \
33- test x"$with_initscript" = xsystemd; then
34+ test x"$with_initscript" = xsystemd || \
35+ test x"$with_initscript" = xsysv,systemd; then
36 initscript=$with_initscript
37 else
38 AC_MSG_ERROR([Illegal value -$with_initscript- for option --with-initscript])
39 fi
40
41- AM_CONDITIONAL([HAVE_SYSV], [test x"$initscript" = xsysv])
42- AM_CONDITIONAL([HAVE_SYSTEMD_UNIT], [test x"$initscript" = xsystemd])
43+ AM_CONDITIONAL([HAVE_SYSV], [test x"${initscript#sysv}" != "x${initscript}"])
44+ AM_CONDITIONAL([HAVE_SYSTEMD_UNIT], [test x"${initscript%systemd}" != x"${initscript}"])
45 AC_MSG_NOTICE([Will use init script type: $initscript])
46 ])
47
This page took 0.052937 seconds and 4 git commands to generate.