diff --git a/Makefile.in b/Makefile.in index 0292b5aafa3c71157d7092344eacbca288610006..b05692ce4dd86e89c8a6419ccb51af1c11d1b591 100644 --- a/Makefile.in +++ b/Makefile.in @@ -133,6 +133,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -472,6 +473,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/aclocal.m4 b/aclocal.m4 index 810ead3ec2afbce9a87ea1895c94136573522798..3b5f92e1fa2389445eccb44533c6784d36526beb 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1902,3 +1902,4 @@ m4_include([auxdir/x_ac_rrdtool.m4]) m4_include([auxdir/x_ac_setproctitle.m4]) m4_include([auxdir/x_ac_sgi_job.m4]) m4_include([auxdir/x_ac_slurm_ssl.m4]) +m4_include([auxdir/x_ac_systemd.m4]) diff --git a/auxdir/Makefile.in b/auxdir/Makefile.in index 1dc7f5cbc6599bb2acdea46a5b765730a7d87055..fb2dc545a6e651bfd82a57f815e14aea70ef86e7 100644 --- a/auxdir/Makefile.in +++ b/auxdir/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -352,6 +353,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ @@ -453,7 +455,8 @@ EXTRA_DIST = \ x_ac_readline.m4 \ x_ac_setproctitle.m4 \ x_ac_sgi_job.m4 \ - x_ac_slurm_ssl.m4 + x_ac_slurm_ssl.m4 \ + x_ac_systemd.m4 all: all-am diff --git a/config.h.in b/config.h.in index a760f167c3a4ee878814c29efe8cddc08db51fe1..5a3b4ea2c3a910bdc6cf7403f64117a2c1c0b193 100644 --- a/config.h.in +++ b/config.h.in @@ -323,6 +323,9 @@ /* Define to 1 if you have the <sysint.h> header file. */ #undef HAVE_SYSINT_H +/* Define systemd presence */ +#undef HAVE_SYSTEMD + /* Define to 1 if you have the <sys/dr.h> header file. */ #undef HAVE_SYS_DR_H diff --git a/configure b/configure index 85e3327107e35956f838e3068be7253349c748bd..c3951deeadd49dd544a8595614de354d1835d132 100755 --- a/configure +++ b/configure @@ -655,6 +655,7 @@ MUNGE_DIR MUNGE_LDFLAGS MUNGE_CPPFLAGS MUNGE_LIBS +SYSTEMD_TASKSMAX_OPTION HAVE_OPENSSL HAVE_OPENSSL_FALSE HAVE_OPENSSL_TRUE @@ -24591,6 +24592,56 @@ fi + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for systemd presence" >&5 +$as_echo_n "checking for systemd presence... " >&6; } +if ${_cv_systemd_presence+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"systemd\""; } >&5 + ($PKG_CONFIG --exists --print-errors "systemd") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + _cv_systemd_presence=yes +else + _cv_systemd_presence=no +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_cv_systemd_presence" >&5 +$as_echo "$_cv_systemd_presence" >&6; } + + if test "x$_cv_systemd_presence" != "xno"; then + +$as_echo "#define HAVE_SYSTEMD 1" >>confdefs.h + + + _cv_systemd_version=`$PKG_CONFIG --modversion systemd 2>/dev/null` + + SYSTEMD_TASKSMAX_OPTION="" + if test "$_cv_systemd_version" -ge 227; then + SYSTEMD_TASKSMAX_OPTION="TasksMax=infinity" + fi + + + # In the future we might want to enable the configure option + # --with-systemdsystemunitdir=DIR, so that users can specify + # at configure time the directory to install the .service files. + # https://www.freedesktop.org/software/systemd/man/daemon.html#Installing%20Systemd%20Service%20Files + + #AC_CACHE_CHECK([for systemd system unit dir], + # [_cv_systemd_systemunitdir], + # [PKG_CHECK_VAR([SYSTEMD_SYSTEM_UNIT_DIR], + # [systemd], + # [systemdsystemunitdir], + # [_cv_systemd_systemunitdir=$SYSTEMD_SYSTEM_UNIT_DIR], + # [_cv_systemd_systemunitdir=no])]) + fi + + + + + _x_ac_munge_dirs="/usr /usr/local /opt/freeware /opt/munge" _x_ac_munge_libs="lib64 lib" diff --git a/contribs/Makefile.in b/contribs/Makefile.in index f1db07d32d6c9c4a762ff64ab917d1c0b9808658..6c768222fae1183b71c0071d145eeae98ef145f0 100644 --- a/contribs/Makefile.in +++ b/contribs/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/cray/Makefile.in b/contribs/cray/Makefile.in index 58458243586d20e1e7e75aa252ecf57f32ff5fb1..87e1594dca0dd6f675693111b4a0267f5b9f3970 100644 --- a/contribs/cray/Makefile.in +++ b/contribs/cray/Makefile.in @@ -141,6 +141,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -500,6 +501,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/cray/csm/Makefile.in b/contribs/cray/csm/Makefile.in index df567ed72393b46be5f07c4777d591507556d0c9..ff8c19db033c2739088609601e05b355ded43bb4 100644 --- a/contribs/cray/csm/Makefile.in +++ b/contribs/cray/csm/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -357,6 +358,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/lua/Makefile.in b/contribs/lua/Makefile.in index 12229b67a1ad2248d7d66addfaafbdfc806b0082..4dc1a5dddbdde1d1aab404be1f73c2640ddfd931 100644 --- a/contribs/lua/Makefile.in +++ b/contribs/lua/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -351,6 +352,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/mic/Makefile.in b/contribs/mic/Makefile.in index df455c62051f3c6624357b603944ac29d8cd811e..8de5757ea06f453e44d12774f8ae592e316c2cf3 100644 --- a/contribs/mic/Makefile.in +++ b/contribs/mic/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -351,6 +352,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/openlava/Makefile.in b/contribs/openlava/Makefile.in index d81d6d4ce7acddd15494d024692495162192f67f..e3bd868e94f2c3ff03dae97f2c8399393cab7305 100644 --- a/contribs/openlava/Makefile.in +++ b/contribs/openlava/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -384,6 +385,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/pam/Makefile.in b/contribs/pam/Makefile.in index cce50ec86109af8e33138ba8b20e284988199c82..fb37944c0a621195da07c5bbccdb160c243dcf8a 100644 --- a/contribs/pam/Makefile.in +++ b/contribs/pam/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -441,6 +442,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/pam_slurm_adopt/Makefile.in b/contribs/pam_slurm_adopt/Makefile.in index 8520e8e1d830dc98ad311ae108b6b7c65fd4a0ee..feb87fb39b74aaab516f431afd53ea34b413af7d 100644 --- a/contribs/pam_slurm_adopt/Makefile.in +++ b/contribs/pam_slurm_adopt/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -445,6 +446,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/perlapi/Makefile.in b/contribs/perlapi/Makefile.in index 683df87a52fc79b707a8a3bafa4adfb67e08d9dc..ca9ec3a23773f7ce77f511137e40a107a0391f7a 100644 --- a/contribs/perlapi/Makefile.in +++ b/contribs/perlapi/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/perlapi/libslurm/Makefile.in b/contribs/perlapi/libslurm/Makefile.in index bfce3647739e41354584f53cb64a6597b8c4e093..9a972aa05142edaf95679a802d3d2c8d67480fd3 100644 --- a/contribs/perlapi/libslurm/Makefile.in +++ b/contribs/perlapi/libslurm/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -351,6 +352,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/perlapi/libslurmdb/Makefile.in b/contribs/perlapi/libslurmdb/Makefile.in index 4af49d4f42adcdfc46db51f5d1c796fcf0384fd3..5dfb3db3241cc88a32467391c84452a29a39b6ed 100644 --- a/contribs/perlapi/libslurmdb/Makefile.in +++ b/contribs/perlapi/libslurmdb/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -351,6 +352,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/phpext/Makefile.in b/contribs/phpext/Makefile.in index 793577ebdfb2c99a2daad67b5385d253e492e6d4..e150580af3082e91748c94794db2035682be5a45 100644 --- a/contribs/phpext/Makefile.in +++ b/contribs/phpext/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -351,6 +352,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/pmi2/Makefile.in b/contribs/pmi2/Makefile.in index 6f07d1ff78bd3c9d0c1b6f1a8ab362bd00073ebc..d9d608d44586a20bbad8abaa7be3da624b603982 100644 --- a/contribs/pmi2/Makefile.in +++ b/contribs/pmi2/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -438,6 +439,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/seff/Makefile.in b/contribs/seff/Makefile.in index 88372f4925402deab639fc589013ccc91f2bb404..e99e5c3ee2e5f7efffa7b852b1e0e9016d7281ef 100644 --- a/contribs/seff/Makefile.in +++ b/contribs/seff/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -383,6 +384,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/sgather/Makefile.in b/contribs/sgather/Makefile.in index 2d6349d8fb45dd89b37be64ec23c0d03221a2f6e..dab9ba45278e7a29afb0fa03724be63561ff1703 100644 --- a/contribs/sgather/Makefile.in +++ b/contribs/sgather/Makefile.in @@ -133,6 +133,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -384,6 +385,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/sgi/Makefile.in b/contribs/sgi/Makefile.in index a7e5668db199ff648f6663465405affea612968c..c9feb80c788069d6649f68b884e9030d08029c02 100644 --- a/contribs/sgi/Makefile.in +++ b/contribs/sgi/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/sjobexit/Makefile.in b/contribs/sjobexit/Makefile.in index 01d44be5121fc0c251436aca4817f0a7cf7c649d..b54acb8f909c9c986df009026b565db1d470124e 100644 --- a/contribs/sjobexit/Makefile.in +++ b/contribs/sjobexit/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -384,6 +385,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/contribs/torque/Makefile.in b/contribs/torque/Makefile.in index a8c6b7377df7894ffb5f6e26f2de50071124afbf..6e84bf11787fcbaaace4480a11c5bafc993be07f 100644 --- a/contribs/torque/Makefile.in +++ b/contribs/torque/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -384,6 +385,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/doc/Makefile.in b/doc/Makefile.in index 3134973d4d3fbd5b9c1d0cdedbebb8287c80916d..5bb11feaaec3a9871953f95bba0c666b158f5081 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/doc/html/Makefile.in b/doc/html/Makefile.in index ecd1ed4f72357cb6f4c09ec0183288852f52057d..e47ca33e380528fd64b4c24536154ce18782a6ba 100644 --- a/doc/html/Makefile.in +++ b/doc/html/Makefile.in @@ -133,6 +133,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -383,6 +384,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/doc/man/Makefile.in b/doc/man/Makefile.in index 995ec98bee1ae65964c8be97753c84c01317ce23..3c3a6d6dd3a22a1f27e2902312d7cadf14de9e2f 100644 --- a/doc/man/Makefile.in +++ b/doc/man/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/doc/man/man1/Makefile.in b/doc/man/man1/Makefile.in index 17c69b81630e96378c9f5cb0103635bfc1a8e90e..e8d012837b7bf5e8353d4823cc03cfe4e0b49eff 100644 --- a/doc/man/man1/Makefile.in +++ b/doc/man/man1/Makefile.in @@ -140,6 +140,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -391,6 +392,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/doc/man/man3/Makefile.in b/doc/man/man3/Makefile.in index 34ea992fb3e9bbbfd2c2b8706313ffcaa9cb4a37..c180f1014ac656fdcaae59df0dd06ad3faed5707 100644 --- a/doc/man/man3/Makefile.in +++ b/doc/man/man3/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -382,6 +383,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/doc/man/man5/Makefile.in b/doc/man/man5/Makefile.in index bd8eeae954bf00a141cd725f15d5f8c095f68b7a..46d7374ba8ef5dd4167f9bddf63c90e81877a2b9 100644 --- a/doc/man/man5/Makefile.in +++ b/doc/man/man5/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -385,6 +386,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/doc/man/man8/Makefile.in b/doc/man/man8/Makefile.in index 30a3f1ef0ac1b9dcbbe8b5fff88270f9cbcaea82..cb06b556d2245afa2fdae485fea00326351e6487 100644 --- a/doc/man/man8/Makefile.in +++ b/doc/man/man8/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -385,6 +386,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/etc/Makefile.in b/etc/Makefile.in index d276254e4d4fa7838694f4f93edf5434e644c649..48da9b0a94419f7d72a9300e15bd47d236dee3ab 100644 --- a/etc/Makefile.in +++ b/etc/Makefile.in @@ -133,6 +133,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -353,6 +354,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ @@ -430,7 +432,8 @@ edit = sed \ -e 's|@libdir[@]|$(libdir)|g' \ -e 's|@sbindir[@]|$(sbindir)|g' \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ - -e 's|@BLUEGENE_LOADED_FALSE[@]|$(BLUEGENE_LOADED_FALSE)|g' + -e 's|@BLUEGENE_LOADED_FALSE[@]|$(BLUEGENE_LOADED_FALSE)|g' \ + -e 's|@SYSTEMD_TASKSMAX_OPTION[@]|$(SYSTEMD_TASKSMAX_OPTION)|g' noinst_DATA = $(ETC_FILES) all: all-am diff --git a/src/Makefile.in b/src/Makefile.in index 75d8ac44948b28f2f0f891c90296e0c407c6968d..6ea407c6a9b4bc52e699178071ff8b49ae9c4dd6 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/api/Makefile.in b/src/api/Makefile.in index 936853aef673459e329cada2a8de5d297aa43991..c406d4fd105b9080f5919a34bcb04272645464fe 100644 --- a/src/api/Makefile.in +++ b/src/api/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -478,6 +479,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/bcast/Makefile.in b/src/bcast/Makefile.in index 4bf6c7a0ed21db5701455bdc927d60d5e875cf8c..a55fb38e154987874a98215edba1b00d66a66b72 100644 --- a/src/bcast/Makefile.in +++ b/src/bcast/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -408,6 +409,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/common/Makefile.in b/src/common/Makefile.in index 7bb2d800cafed993ff117b3e5f9a0faa808f37e2..1c8279900d4d19747126b5ea4c8a1604a5bc7c36 100644 --- a/src/common/Makefile.in +++ b/src/common/Makefile.in @@ -146,6 +146,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -467,6 +468,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/database/Makefile.in b/src/database/Makefile.in index b8c024cd633bf306ce99f57e58bc3ef5e23de2b9..21a8c9887b0a4e7a6e2659c7ad88995edf563294 100644 --- a/src/database/Makefile.in +++ b/src/database/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -415,6 +416,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/db_api/Makefile.in b/src/db_api/Makefile.in index bca4d68e2604068609d3fece125770ef3dab61f0..683002dd54d678096d93586b42e20d4075583f97 100644 --- a/src/db_api/Makefile.in +++ b/src/db_api/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -449,6 +450,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/layouts/Makefile.in b/src/layouts/Makefile.in index deac89304679535c944de62f73bdd0d08a417c2c..dd5027e95b1ba78f8b64a27e7ffceec6abe0374e 100644 --- a/src/layouts/Makefile.in +++ b/src/layouts/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/layouts/power/Makefile.in b/src/layouts/power/Makefile.in index 07037e261a4a548873bf886c32bec4212c2c8916..0e3a0d1f988e9d039eb02dfb3d7b8cf10f849e04 100644 --- a/src/layouts/power/Makefile.in +++ b/src/layouts/power/Makefile.in @@ -133,6 +133,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -443,6 +444,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/layouts/unit/Makefile.in b/src/layouts/unit/Makefile.in index c190e716ec166a5f87cb0965de14c4885d16e8b2..0f3e5989b2945135453ab82a5d79965a06d093f3 100644 --- a/src/layouts/unit/Makefile.in +++ b/src/layouts/unit/Makefile.in @@ -133,6 +133,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/Makefile.in b/src/plugins/Makefile.in index 4fc6dc9f655967d42fd16cf8a89c698184686744..45c3289d4f58ab2053dfca3d8c3fe8ed346ceb3c 100644 --- a/src/plugins/Makefile.in +++ b/src/plugins/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/accounting_storage/Makefile.in b/src/plugins/accounting_storage/Makefile.in index 80eec5f50c1bd88869ee0a6bf413defc3630647c..2a1ff13e968270ab9cf2958d234cbb17f1b86826 100644 --- a/src/plugins/accounting_storage/Makefile.in +++ b/src/plugins/accounting_storage/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/accounting_storage/common/Makefile.in b/src/plugins/accounting_storage/common/Makefile.in index 6b4c764695694bbe95ee6a1c4c932bdfdb0abb6a..e3efce1bada4349f40e6f7bd10c17b05e9c09125 100644 --- a/src/plugins/accounting_storage/common/Makefile.in +++ b/src/plugins/accounting_storage/common/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -403,6 +404,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/accounting_storage/filetxt/Makefile.in b/src/plugins/accounting_storage/filetxt/Makefile.in index 9730720986140f4582cee25aa38c5ac61b35bf33..5e3328d124fc1d623c565ef81714f100931c605e 100644 --- a/src/plugins/accounting_storage/filetxt/Makefile.in +++ b/src/plugins/accounting_storage/filetxt/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/accounting_storage/mysql/Makefile.in b/src/plugins/accounting_storage/mysql/Makefile.in index 6d54983b59ac50bfb708e3f071f5520123e0a811..58a27cb009d35243294da844e619f34434eb99f2 100644 --- a/src/plugins/accounting_storage/mysql/Makefile.in +++ b/src/plugins/accounting_storage/mysql/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -496,6 +497,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/accounting_storage/none/Makefile.in b/src/plugins/accounting_storage/none/Makefile.in index aafbd190637324bf74597e9d376c6208d3f7efdc..c71fca6de8baa5d6479424ec590f44b69945f94c 100644 --- a/src/plugins/accounting_storage/none/Makefile.in +++ b/src/plugins/accounting_storage/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/accounting_storage/slurmdbd/Makefile.in b/src/plugins/accounting_storage/slurmdbd/Makefile.in index 10261b9d76982dbb2411cecd80dbf5d6b9c1561e..0f3c0406f9d30e7646605992e926b2508778ac44 100644 --- a/src/plugins/accounting_storage/slurmdbd/Makefile.in +++ b/src/plugins/accounting_storage/slurmdbd/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_energy/Makefile.in b/src/plugins/acct_gather_energy/Makefile.in index 4ba3aadbda46948380e4e97f090b406f4f40e981..cf4971238465d9dcd4229e69b0ca0a4c84091fa8 100644 --- a/src/plugins/acct_gather_energy/Makefile.in +++ b/src/plugins/acct_gather_energy/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_energy/cray/Makefile.in b/src/plugins/acct_gather_energy/cray/Makefile.in index 9a7a167872314f00f0b040efcf431fbd0159349d..0dcbd62d247213501bbed41cfc5a85d71fd73aa5 100644 --- a/src/plugins/acct_gather_energy/cray/Makefile.in +++ b/src/plugins/acct_gather_energy/cray/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_energy/ibmaem/Makefile.in b/src/plugins/acct_gather_energy/ibmaem/Makefile.in index 68f37194e304a98dac676b525f7a5b2defffe185..a4bdf37d7bc7b3d80dd8357ddf98ba81609fed3c 100644 --- a/src/plugins/acct_gather_energy/ibmaem/Makefile.in +++ b/src/plugins/acct_gather_energy/ibmaem/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_energy/ipmi/Makefile.in b/src/plugins/acct_gather_energy/ipmi/Makefile.in index e075042105083a2b806c759726979187b8969aa6..535026bc3064d88e242b664ab3c481a834d17ed4 100644 --- a/src/plugins/acct_gather_energy/ipmi/Makefile.in +++ b/src/plugins/acct_gather_energy/ipmi/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -452,6 +453,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_energy/none/Makefile.in b/src/plugins/acct_gather_energy/none/Makefile.in index e03c3288b59b9e23b84807e4f80dfc988e323d40..6346a523a0a0242903a2d0290a18792f803cc6ad 100644 --- a/src/plugins/acct_gather_energy/none/Makefile.in +++ b/src/plugins/acct_gather_energy/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_energy/rapl/Makefile.in b/src/plugins/acct_gather_energy/rapl/Makefile.in index 547f75f3d33d577243c4d5e7dd3a65e4015b4b4e..e1f1e71339e3900eb22d6cf6c5580e1fe8234cc2 100644 --- a/src/plugins/acct_gather_energy/rapl/Makefile.in +++ b/src/plugins/acct_gather_energy/rapl/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_filesystem/Makefile.in b/src/plugins/acct_gather_filesystem/Makefile.in index 510cdf97fbf46fca328f9dd39de85e7fcc8e3061..6f4993c8b6ff02a135b5da362d23af0b939a6da3 100644 --- a/src/plugins/acct_gather_filesystem/Makefile.in +++ b/src/plugins/acct_gather_filesystem/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_filesystem/lustre/Makefile.in b/src/plugins/acct_gather_filesystem/lustre/Makefile.in index 42ddfc34fef6acc735d4b0e17a7df7a97b41f349..5744cdc1dc056bf4aab6843d77bebdf366394d95 100644 --- a/src/plugins/acct_gather_filesystem/lustre/Makefile.in +++ b/src/plugins/acct_gather_filesystem/lustre/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -439,6 +440,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_filesystem/none/Makefile.in b/src/plugins/acct_gather_filesystem/none/Makefile.in index 4426fc2fab6bbd051a64e1806c2a763d54fed2d6..b93acb7b6cfb74437608470076cff1b7beb466fc 100644 --- a/src/plugins/acct_gather_filesystem/none/Makefile.in +++ b/src/plugins/acct_gather_filesystem/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_interconnect/Makefile.in b/src/plugins/acct_gather_interconnect/Makefile.in index 7dfc854e5cf79e582aa046de98390e2db0893be3..ae6c7ca23c14aab0b8c543f56abdec47a26b55f9 100644 --- a/src/plugins/acct_gather_interconnect/Makefile.in +++ b/src/plugins/acct_gather_interconnect/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_interconnect/none/Makefile.in b/src/plugins/acct_gather_interconnect/none/Makefile.in index 99b674b1dbdd28c5f8242dc291d110c61b9916bb..a9d914a300156e5d75d25e05afeac980b2223f1c 100644 --- a/src/plugins/acct_gather_interconnect/none/Makefile.in +++ b/src/plugins/acct_gather_interconnect/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_interconnect/ofed/Makefile.in b/src/plugins/acct_gather_interconnect/ofed/Makefile.in index 67215f6d4e060b03f59a5305f36b14a27b456915..ac0f4ee35d56724d25850f7d110408462ff31fec 100644 --- a/src/plugins/acct_gather_interconnect/ofed/Makefile.in +++ b/src/plugins/acct_gather_interconnect/ofed/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -450,6 +451,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_profile/Makefile.in b/src/plugins/acct_gather_profile/Makefile.in index 35ccfe1eb6f823c2dd6f2414cdad60f056c44b86..021b0aafeb0b01e9193b40a616f18b3473f74375 100644 --- a/src/plugins/acct_gather_profile/Makefile.in +++ b/src/plugins/acct_gather_profile/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -414,6 +415,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_profile/hdf5/Makefile.in b/src/plugins/acct_gather_profile/hdf5/Makefile.in index 20472f33912aa0aa04838c27476a1fc8b13ea91d..42cdbb0116dbbef00c353ff4dd6594e1bffc475f 100644 --- a/src/plugins/acct_gather_profile/hdf5/Makefile.in +++ b/src/plugins/acct_gather_profile/hdf5/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -503,6 +504,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_profile/hdf5/sh5util/Makefile.in b/src/plugins/acct_gather_profile/hdf5/sh5util/Makefile.in index ebeb4d2cde87cf029420524755518db6655e94ca..7c0c052885f519b9353f445de3101c6a3cd79469 100644 --- a/src/plugins/acct_gather_profile/hdf5/sh5util/Makefile.in +++ b/src/plugins/acct_gather_profile/hdf5/sh5util/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -412,6 +413,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/acct_gather_profile/none/Makefile.in b/src/plugins/acct_gather_profile/none/Makefile.in index 4dd687fedeb5b4aadff0f892f51c660b72e06101..ada3f70a0d8ffca21154a34dcdeef8ccd559ae85 100644 --- a/src/plugins/acct_gather_profile/none/Makefile.in +++ b/src/plugins/acct_gather_profile/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/auth/Makefile.in b/src/plugins/auth/Makefile.in index 29983d9d19dfbf53d51e3819d36461ba098128b7..7a75dc0bd112a993d81f365940b7d91b88a1e6a4 100644 --- a/src/plugins/auth/Makefile.in +++ b/src/plugins/auth/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/auth/munge/Makefile.in b/src/plugins/auth/munge/Makefile.in index 24076b37d129e4e448d78ee1d3b1dbc8d252bfc1..2e454fa3332f4f1d39aebe167e08a2e0fec0fcdd 100644 --- a/src/plugins/auth/munge/Makefile.in +++ b/src/plugins/auth/munge/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/auth/none/Makefile.in b/src/plugins/auth/none/Makefile.in index 1d4005330a5db1ecdfcc88d06808af8ebef533e1..1b6d420cb501efce0e7dc912bca3bdb275f90a50 100644 --- a/src/plugins/auth/none/Makefile.in +++ b/src/plugins/auth/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/burst_buffer/Makefile.in b/src/plugins/burst_buffer/Makefile.in index 2fa8dfea32574234562f046999d0c6e6e6d71f0a..ccba48aad2b73935e30d92ec2a99e376570e8204 100644 --- a/src/plugins/burst_buffer/Makefile.in +++ b/src/plugins/burst_buffer/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/burst_buffer/common/Makefile.in b/src/plugins/burst_buffer/common/Makefile.in index 08666eed587bf3fd76b7741a7995707e26360cfd..044efc7ef41a3bd7ee0b87a94f71cab274cb96c8 100644 --- a/src/plugins/burst_buffer/common/Makefile.in +++ b/src/plugins/burst_buffer/common/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -403,6 +404,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/burst_buffer/cray/Makefile.in b/src/plugins/burst_buffer/cray/Makefile.in index e608c4cbdab7504808d02c820070dd88e1de820a..5ff2b8febec876ea7514132e6dc5088dc03dc32f 100644 --- a/src/plugins/burst_buffer/cray/Makefile.in +++ b/src/plugins/burst_buffer/cray/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -442,6 +443,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/burst_buffer/generic/Makefile.in b/src/plugins/burst_buffer/generic/Makefile.in index 99ed579a5ebf34d9701a0fb5709c9f31525371ca..a5a112e872b6ec5601ec0073dde5c59cd244822e 100644 --- a/src/plugins/burst_buffer/generic/Makefile.in +++ b/src/plugins/burst_buffer/generic/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/checkpoint/Makefile.in b/src/plugins/checkpoint/Makefile.in index 691da1dd87749f6fcb7b95ddaf12aaa7ed3b92d5..7ac450c8bb3af044e57bca22f173031a1c12299b 100644 --- a/src/plugins/checkpoint/Makefile.in +++ b/src/plugins/checkpoint/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/checkpoint/blcr/Makefile.in b/src/plugins/checkpoint/blcr/Makefile.in index 2622a57370764c15cdf6305cb51385f65eda52d5..bb52b2cfc6bc37c61f80fe4e019974f5ebd07428 100644 --- a/src/plugins/checkpoint/blcr/Makefile.in +++ b/src/plugins/checkpoint/blcr/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -445,6 +446,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/checkpoint/none/Makefile.in b/src/plugins/checkpoint/none/Makefile.in index edbdb753aa32c1a2611dfb5559136b0b861a8493..b3b15ff13949194089d5c3440003e1e1058f6da0 100644 --- a/src/plugins/checkpoint/none/Makefile.in +++ b/src/plugins/checkpoint/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/checkpoint/ompi/Makefile.in b/src/plugins/checkpoint/ompi/Makefile.in index 9ecf16b4ce4ddf3ad08fdfbe0feab182d08e11b2..ccd30dbbe2ed60d2fd654e53a376f2a08d647c3f 100644 --- a/src/plugins/checkpoint/ompi/Makefile.in +++ b/src/plugins/checkpoint/ompi/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/checkpoint/poe/Makefile.in b/src/plugins/checkpoint/poe/Makefile.in index ec1d32461176ead8062d681f1e062b531a1dd02f..896ba3797d2439067c3cf99ee95db430c4d7895e 100644 --- a/src/plugins/checkpoint/poe/Makefile.in +++ b/src/plugins/checkpoint/poe/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -439,6 +440,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/core_spec/Makefile.in b/src/plugins/core_spec/Makefile.in index 714a39e55a0fa3e6a7165fecb914172019541b6f..0cf1307d6c2d517ae379c17ff0e102943d0081fe 100644 --- a/src/plugins/core_spec/Makefile.in +++ b/src/plugins/core_spec/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/core_spec/cray/Makefile.in b/src/plugins/core_spec/cray/Makefile.in index 34c162b88aa96f5e6047e3d12833a6bb46c439c4..db55e6febfad3ae945263587029d73ea4eda2c1b 100644 --- a/src/plugins/core_spec/cray/Makefile.in +++ b/src/plugins/core_spec/cray/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/core_spec/none/Makefile.in b/src/plugins/core_spec/none/Makefile.in index 67671ec47a6b7f7ba49ee4a9c62dcd348981de2e..45d28dcd85fe291d3b24a96eb37baa6586afb586 100644 --- a/src/plugins/core_spec/none/Makefile.in +++ b/src/plugins/core_spec/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/crypto/Makefile.in b/src/plugins/crypto/Makefile.in index cecd48aa200a1d96de4585191cef49e226edc56c..e18dc5f3203967b1be1b98c711865ee1c038e690 100644 --- a/src/plugins/crypto/Makefile.in +++ b/src/plugins/crypto/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/crypto/munge/Makefile.in b/src/plugins/crypto/munge/Makefile.in index 924cb662576f90d73b57ab5e5d795f3af7e18861..f97c473f23c8c457f18ec0199c5517a93a14137b 100644 --- a/src/plugins/crypto/munge/Makefile.in +++ b/src/plugins/crypto/munge/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/crypto/openssl/Makefile.in b/src/plugins/crypto/openssl/Makefile.in index 45691033a0ec02174c726165e5888665851e6ca5..33fb98eeec097097eae73b6ae8ee18eb21a944c2 100644 --- a/src/plugins/crypto/openssl/Makefile.in +++ b/src/plugins/crypto/openssl/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -441,6 +442,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/ext_sensors/Makefile.in b/src/plugins/ext_sensors/Makefile.in index 919a59754565f3dc5e9f2e4442d44dd1ee72afce..e9cb82f7504778db3842a118900ede0ec21118ea 100644 --- a/src/plugins/ext_sensors/Makefile.in +++ b/src/plugins/ext_sensors/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/ext_sensors/none/Makefile.in b/src/plugins/ext_sensors/none/Makefile.in index 3c532c0e1f2b836296d37d7a250f0c947cbc3d39..6a160003bfbed65e094fe64ef0f244712d501f02 100644 --- a/src/plugins/ext_sensors/none/Makefile.in +++ b/src/plugins/ext_sensors/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/ext_sensors/rrd/Makefile.in b/src/plugins/ext_sensors/rrd/Makefile.in index e97413d85291b6a7783e428e0087a7da536d96c1..1629a5e0cd9f0909ec0ef3876b5a815529a71113 100644 --- a/src/plugins/ext_sensors/rrd/Makefile.in +++ b/src/plugins/ext_sensors/rrd/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -443,6 +444,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/gres/Makefile.in b/src/plugins/gres/Makefile.in index c0ee1fed98457c14a39c96c7e47b0a132f96dd85..3286cdf1673a220728011c2e3abdd106364e405d 100644 --- a/src/plugins/gres/Makefile.in +++ b/src/plugins/gres/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/gres/gpu/Makefile.in b/src/plugins/gres/gpu/Makefile.in index 44c3ce334401c92eda66fd46ae36220f988ea653..379996e71f6cde71a6919e268939d6b87b6e3d36 100644 --- a/src/plugins/gres/gpu/Makefile.in +++ b/src/plugins/gres/gpu/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/gres/mic/Makefile.in b/src/plugins/gres/mic/Makefile.in index f0686efbc7b60f56d60f11cd1ae439e3e3d3f945..fd17b1c6c4db826a76b32492512595f7b359ab47 100644 --- a/src/plugins/gres/mic/Makefile.in +++ b/src/plugins/gres/mic/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/gres/nic/Makefile.in b/src/plugins/gres/nic/Makefile.in index 00816afdb28c4ba27036fa472d54dc33e3de7279..551595a5c029d2ea6197e2a7c50558a4b6feb03f 100644 --- a/src/plugins/gres/nic/Makefile.in +++ b/src/plugins/gres/nic/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_container/Makefile.in b/src/plugins/job_container/Makefile.in index b8ebc8afb8f16465110ec91c76d2b6101fb122c1..c17f68c45de6d9c7240440be9dd0c41620877cb6 100644 --- a/src/plugins/job_container/Makefile.in +++ b/src/plugins/job_container/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_container/cncu/Makefile.in b/src/plugins/job_container/cncu/Makefile.in index 1b0bcfe53e1cb9d6566f08b15e69a6492fcfdd73..e99fd6466e5d1cc3430a13ebd1a7d89913d04130 100644 --- a/src/plugins/job_container/cncu/Makefile.in +++ b/src/plugins/job_container/cncu/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_container/none/Makefile.in b/src/plugins/job_container/none/Makefile.in index 520d834cf5096b2b9ce201b6541cb4ee0d540da5..32464e2eddc9581b160fe67ee3cb3665ff4f00ae 100644 --- a/src/plugins/job_container/none/Makefile.in +++ b/src/plugins/job_container/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_submit/Makefile.in b/src/plugins/job_submit/Makefile.in index 2cd6c5078fb2e0340e5217202e972914ffc61b3f..e1293b44a1a79ae045e9917447dbba03ba244c7e 100644 --- a/src/plugins/job_submit/Makefile.in +++ b/src/plugins/job_submit/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_submit/all_partitions/Makefile.in b/src/plugins/job_submit/all_partitions/Makefile.in index c0084de70d78fae897a06fe2e7c405d894a5c379..08d58a4940040a00e9f206a16837d3fff385663e 100644 --- a/src/plugins/job_submit/all_partitions/Makefile.in +++ b/src/plugins/job_submit/all_partitions/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_submit/cray/Makefile.in b/src/plugins/job_submit/cray/Makefile.in index b687ef8895ef632fe75f08791d49d2eadd99b8b3..7ec52fbe5867a13120afd32c648a4b77efe8709e 100644 --- a/src/plugins/job_submit/cray/Makefile.in +++ b/src/plugins/job_submit/cray/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_submit/defaults/Makefile.in b/src/plugins/job_submit/defaults/Makefile.in index 8d16bc803ef4ee004905efff6edf7e0959813ac1..88c0d13ce2e040f3e1b2680c2b625ba01e5074f5 100644 --- a/src/plugins/job_submit/defaults/Makefile.in +++ b/src/plugins/job_submit/defaults/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_submit/logging/Makefile.in b/src/plugins/job_submit/logging/Makefile.in index e3268a4f5b3765c5b77070f1ba6aca2f700e44a5..31e80f4e393b775cb6b140150d4df97fe927692f 100644 --- a/src/plugins/job_submit/logging/Makefile.in +++ b/src/plugins/job_submit/logging/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_submit/lua/Makefile.in b/src/plugins/job_submit/lua/Makefile.in index 3debad3b8aa51aa3426203fc5cd4724210216d7d..f0adfb1e702f3260b3c5be343a0fb8c9911c4870 100644 --- a/src/plugins/job_submit/lua/Makefile.in +++ b/src/plugins/job_submit/lua/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -439,6 +440,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_submit/partition/Makefile.in b/src/plugins/job_submit/partition/Makefile.in index a098ec45814236e3397cb9899d5fd778573bc17f..dd84b03259875c08a49101c5eb73dc47fd40494e 100644 --- a/src/plugins/job_submit/partition/Makefile.in +++ b/src/plugins/job_submit/partition/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_submit/pbs/Makefile.in b/src/plugins/job_submit/pbs/Makefile.in index c30eb7ef920278ac186874fc6792381fba0de083..fedc5b5d34aceb4eecf2d220ed532fa45a76d2e8 100644 --- a/src/plugins/job_submit/pbs/Makefile.in +++ b/src/plugins/job_submit/pbs/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -440,6 +441,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_submit/require_timelimit/Makefile.in b/src/plugins/job_submit/require_timelimit/Makefile.in index 2ad842f70ef0eb0e7c1a93bc9fed3e8742fcfd81..7b45cdc81cfd124a9260cf1d317ebbd0b860c947 100644 --- a/src/plugins/job_submit/require_timelimit/Makefile.in +++ b/src/plugins/job_submit/require_timelimit/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/job_submit/throttle/Makefile.in b/src/plugins/job_submit/throttle/Makefile.in index d2412f7a235f2c1c9a22e56f3b5d2697d6e150fa..678200ead79d1f683b417827b858d17ff4743ca1 100644 --- a/src/plugins/job_submit/throttle/Makefile.in +++ b/src/plugins/job_submit/throttle/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobacct_gather/Makefile.in b/src/plugins/jobacct_gather/Makefile.in index f42e1118f107b0a441eb1ed35b0164c3d4554070..273e5514a7190aa9ee7d723ef3a9c6d9b21f1023 100644 --- a/src/plugins/jobacct_gather/Makefile.in +++ b/src/plugins/jobacct_gather/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobacct_gather/cgroup/Makefile.in b/src/plugins/jobacct_gather/cgroup/Makefile.in index 7c767294c0e216488fc4f5a5fd70f3abae0a8c8f..d62f79b4d58e7da6a4848aec1c2322cdc8dbede7 100644 --- a/src/plugins/jobacct_gather/cgroup/Makefile.in +++ b/src/plugins/jobacct_gather/cgroup/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -438,6 +439,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobacct_gather/common/Makefile.in b/src/plugins/jobacct_gather/common/Makefile.in index 753e5aefb0b9752e17eee985e27ba7dfc9fd6e92..8d67df8450fa05ac2ab073f7968a080a902580c2 100644 --- a/src/plugins/jobacct_gather/common/Makefile.in +++ b/src/plugins/jobacct_gather/common/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -403,6 +404,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobacct_gather/linux/Makefile.in b/src/plugins/jobacct_gather/linux/Makefile.in index 3315df160ac65c83481c1921bd6304da39f3cbd6..44ff6bde7f690db9c27cb8cc76b5ddf2c0c42019 100644 --- a/src/plugins/jobacct_gather/linux/Makefile.in +++ b/src/plugins/jobacct_gather/linux/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobacct_gather/none/Makefile.in b/src/plugins/jobacct_gather/none/Makefile.in index aa6d39119b4c9b0258ade01ced04f3a4e461ca17..7df5b074427f9a8ede47c4507c89c8801ff6ea04 100644 --- a/src/plugins/jobacct_gather/none/Makefile.in +++ b/src/plugins/jobacct_gather/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobcomp/Makefile.in b/src/plugins/jobcomp/Makefile.in index b6dbd966b083e7b8c6741fcdcbef29b5f9cec6a9..734e0be5d6ecf1b5448e3f180ae54e089bb37e7d 100644 --- a/src/plugins/jobcomp/Makefile.in +++ b/src/plugins/jobcomp/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobcomp/elasticsearch/Makefile.in b/src/plugins/jobcomp/elasticsearch/Makefile.in index e54beddc10bf35df6ec016186edbbafe83dab102..34a28725667d1f28ee06bd383ac97461da3c550f 100644 --- a/src/plugins/jobcomp/elasticsearch/Makefile.in +++ b/src/plugins/jobcomp/elasticsearch/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -446,6 +447,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobcomp/filetxt/Makefile.in b/src/plugins/jobcomp/filetxt/Makefile.in index dc8d61f2f92451ee3a74241e4168010635701d55..d017a26a029a0f4fa446fe6c3aa65f9d05a97815 100644 --- a/src/plugins/jobcomp/filetxt/Makefile.in +++ b/src/plugins/jobcomp/filetxt/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobcomp/mysql/Makefile.in b/src/plugins/jobcomp/mysql/Makefile.in index 3e10ca0020135a0089f663adaf23d8c54e3fcddb..74ec98f48057679200b6057f2395b780a556764e 100644 --- a/src/plugins/jobcomp/mysql/Makefile.in +++ b/src/plugins/jobcomp/mysql/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -445,6 +446,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobcomp/none/Makefile.in b/src/plugins/jobcomp/none/Makefile.in index eac406de2c3b762b681ffe0a4fd24c1ef2e7db30..c32ed7b558d5d964186c80f230607451b2bd24dd 100644 --- a/src/plugins/jobcomp/none/Makefile.in +++ b/src/plugins/jobcomp/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/jobcomp/script/Makefile.in b/src/plugins/jobcomp/script/Makefile.in index b82dc4abf530c234e53af8f72a1466d11b323717..db7a179691f038fda97fac5dca1cbd59f15f0286 100644 --- a/src/plugins/jobcomp/script/Makefile.in +++ b/src/plugins/jobcomp/script/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/launch/Makefile.in b/src/plugins/launch/Makefile.in index 6d0c99224a6cd45dab3691354646d3dc14c658fd..a31b9b276726fa8767bdc805328bb2841b7e603c 100644 --- a/src/plugins/launch/Makefile.in +++ b/src/plugins/launch/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -415,6 +416,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/launch/aprun/Makefile.in b/src/plugins/launch/aprun/Makefile.in index 275310c46f894605867a4b900ad9d5e8dd0bb14b..d676469049e7cbe1f826fbde4aef8fd9640fda5c 100644 --- a/src/plugins/launch/aprun/Makefile.in +++ b/src/plugins/launch/aprun/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/launch/poe/Makefile.in b/src/plugins/launch/poe/Makefile.in index 281136a67ddf36543ca202ce7b651f1806a3f8b0..86942a4a96e3dd31960c42dded0868834c4f1ea0 100644 --- a/src/plugins/launch/poe/Makefile.in +++ b/src/plugins/launch/poe/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/launch/runjob/Makefile.in b/src/plugins/launch/runjob/Makefile.in index ae266af84ae87cae6eaff25caa812b69e5895de9..eda8ed55d50e8159ede331198bc605dc18523647 100644 --- a/src/plugins/launch/runjob/Makefile.in +++ b/src/plugins/launch/runjob/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -456,6 +457,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/launch/slurm/Makefile.in b/src/plugins/launch/slurm/Makefile.in index 68f388a3fe37c036dfb063e1edaa8e002161ff44..45b8b2c95241c7e6f39e21ac6053566246095a0e 100644 --- a/src/plugins/launch/slurm/Makefile.in +++ b/src/plugins/launch/slurm/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mcs/Makefile.in b/src/plugins/mcs/Makefile.in index cd183fc8a8d5cc91c6be27d36f6e1b0373fb2aff..479f41857e4318b834b7a32a3fb857e9291077a0 100644 --- a/src/plugins/mcs/Makefile.in +++ b/src/plugins/mcs/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mcs/account/Makefile.in b/src/plugins/mcs/account/Makefile.in index d1e9647f2b518ac6fad1fd1bd70f4ca4e87c7933..042addf4be7490a23605dc950214416fffb06ac8 100644 --- a/src/plugins/mcs/account/Makefile.in +++ b/src/plugins/mcs/account/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mcs/group/Makefile.in b/src/plugins/mcs/group/Makefile.in index c7346bf208af2b628b0418e6c407380a9b27f7d3..692ef750b568314c7e24c42df6e7a6db48e246b7 100644 --- a/src/plugins/mcs/group/Makefile.in +++ b/src/plugins/mcs/group/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mcs/none/Makefile.in b/src/plugins/mcs/none/Makefile.in index 45de9a1fb5df02aa57ec84e61aee7d79a6be23f9..c891d71bf1f69656e5ed3ae25f92a4f100bee331 100644 --- a/src/plugins/mcs/none/Makefile.in +++ b/src/plugins/mcs/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mcs/user/Makefile.in b/src/plugins/mcs/user/Makefile.in index fc0c0888b30d8b9cf3331680c085e44e5a7a3a07..c10beb7d1dc4d01e92f1c870d50e6e295044c8f0 100644 --- a/src/plugins/mcs/user/Makefile.in +++ b/src/plugins/mcs/user/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/Makefile.in b/src/plugins/mpi/Makefile.in index 86ad8892816f92c853c4a4f198f05778951be353..1a93ddba76001dae4b25dd5630be0612f9316328 100644 --- a/src/plugins/mpi/Makefile.in +++ b/src/plugins/mpi/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -415,6 +416,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/lam/Makefile.in b/src/plugins/mpi/lam/Makefile.in index 0ace8f8d3cc826fa20fb879095355d044a4f01cf..ea3f7780f97c5feaae68ab5dd2f545e69102a382 100644 --- a/src/plugins/mpi/lam/Makefile.in +++ b/src/plugins/mpi/lam/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/mpich1_p4/Makefile.in b/src/plugins/mpi/mpich1_p4/Makefile.in index e329119c4ec926906fb2b14d96c1ac8beea29f76..13e2a9877106c3b8a6a79d2be137f2df3ee47ad2 100644 --- a/src/plugins/mpi/mpich1_p4/Makefile.in +++ b/src/plugins/mpi/mpich1_p4/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/mpich1_shmem/Makefile.in b/src/plugins/mpi/mpich1_shmem/Makefile.in index e6305e0cae3de9b8e06beacda428b70680733dc2..35de550b6eb12c54fff1799d9efd0c5fefb024c1 100644 --- a/src/plugins/mpi/mpich1_shmem/Makefile.in +++ b/src/plugins/mpi/mpich1_shmem/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/mpichgm/Makefile.in b/src/plugins/mpi/mpichgm/Makefile.in index 88d88c65f00d2d23d255e3b6271fa42302d0780a..a1dd36f305be2fb8569f2f65cc24985f2a9766aa 100644 --- a/src/plugins/mpi/mpichgm/Makefile.in +++ b/src/plugins/mpi/mpichgm/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/mpichmx/Makefile.in b/src/plugins/mpi/mpichmx/Makefile.in index 8fe65c716207a8ecf5e9a8f455566d644be418a7..cfdeb8b696bd14a031bbcc14607208cbba696b7e 100644 --- a/src/plugins/mpi/mpichmx/Makefile.in +++ b/src/plugins/mpi/mpichmx/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/mvapich/Makefile.in b/src/plugins/mpi/mvapich/Makefile.in index 7e18d82e5f0c5cdfb95ab204fe5430d0f400e075..cc9c6f01e00f9a5a7337ad709fc896e48ddaf642 100644 --- a/src/plugins/mpi/mvapich/Makefile.in +++ b/src/plugins/mpi/mvapich/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/none/Makefile.in b/src/plugins/mpi/none/Makefile.in index 95a8a6166245d448d3202d7950b9e17fbe308dfc..f821c3bec85055630fca2dace89ae77a75ccc978 100644 --- a/src/plugins/mpi/none/Makefile.in +++ b/src/plugins/mpi/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/openmpi/Makefile.in b/src/plugins/mpi/openmpi/Makefile.in index 5866c7dfacc4fef0028f46f8531c6922eb14a305..6a3f883ee5b4b5d891cbc1c5987ae146468a3e20 100644 --- a/src/plugins/mpi/openmpi/Makefile.in +++ b/src/plugins/mpi/openmpi/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/pmi2/Makefile.in b/src/plugins/mpi/pmi2/Makefile.in index 1568e6ccec6d96111399d8ca9583398874166b03..1ba723099b18b80937b65fd5affa28b38695cb07 100644 --- a/src/plugins/mpi/pmi2/Makefile.in +++ b/src/plugins/mpi/pmi2/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/mpi/pmix/Makefile.in b/src/plugins/mpi/pmix/Makefile.in index 52c3d184441c0a103686167a4381de63497ea9dc..686e9febb9b396bd38bc433382e4e56698e7e91a 100644 --- a/src/plugins/mpi/pmix/Makefile.in +++ b/src/plugins/mpi/pmix/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -475,6 +476,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/node_features/Makefile.in b/src/plugins/node_features/Makefile.in index df407c2251177913306bc7febe1fe5e7ab679200..28d5db8f4c73f90bda006737caffdb1a43637501 100644 --- a/src/plugins/node_features/Makefile.in +++ b/src/plugins/node_features/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/node_features/knl_cray/Makefile.in b/src/plugins/node_features/knl_cray/Makefile.in index fd413423372cf3f6421d6bfe2042a6d041c2f264..b3c938cac6ff5136ad0d7fa34a1dc5c65d0b77ee 100644 --- a/src/plugins/node_features/knl_cray/Makefile.in +++ b/src/plugins/node_features/knl_cray/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -443,6 +444,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/node_features/knl_generic/Makefile.in b/src/plugins/node_features/knl_generic/Makefile.in index 75dfd9bb2e6ee7709bd9f32561f81359783caf97..e8b66d6826bd552fd074974f50d6e20e65e37309 100644 --- a/src/plugins/node_features/knl_generic/Makefile.in +++ b/src/plugins/node_features/knl_generic/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/power/Makefile.in b/src/plugins/power/Makefile.in index 79c549a4f301dc26233ce436f5961407eb79c3b9..d84104699fded08cae98dd97469ea5122049f143 100644 --- a/src/plugins/power/Makefile.in +++ b/src/plugins/power/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/power/common/Makefile.in b/src/plugins/power/common/Makefile.in index d6170093832db19998bea5dd9a4fb039854608c9..5b79e088983b346f7a6ef9b1c9e77c40c0cb891e 100644 --- a/src/plugins/power/common/Makefile.in +++ b/src/plugins/power/common/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -402,6 +403,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/power/cray/Makefile.in b/src/plugins/power/cray/Makefile.in index ecce2119e2cb9b4b9eb44c4aea97a49775d7dae8..310cd098abc939811eb0b476ad24c95155748a64 100644 --- a/src/plugins/power/cray/Makefile.in +++ b/src/plugins/power/cray/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -438,6 +439,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/power/none/Makefile.in b/src/plugins/power/none/Makefile.in index 71e97cf3c930fc1c1bd1fbb92c4967493a4d5a28..b1889b5c78817585c43cb0fb7ca6dbdc91aad504 100644 --- a/src/plugins/power/none/Makefile.in +++ b/src/plugins/power/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/preempt/Makefile.in b/src/plugins/preempt/Makefile.in index 8d899bc4acf18c3207f23b09ee335a12a7f59b42..c5cf7161ca2818c5b6a43019cddd7264614eb0d2 100644 --- a/src/plugins/preempt/Makefile.in +++ b/src/plugins/preempt/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/preempt/job_prio/Makefile.in b/src/plugins/preempt/job_prio/Makefile.in index 24799c312c1ad9d5c0d7fa7de619eb124b3900cb..0b65b35c4b0ff8c75b91e4423c2b67fa82c8fc54 100644 --- a/src/plugins/preempt/job_prio/Makefile.in +++ b/src/plugins/preempt/job_prio/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/preempt/none/Makefile.in b/src/plugins/preempt/none/Makefile.in index 37b8e0b6e353f9383f54c4b17a938973c3b56085..78aa359c355ce43acbe9a3cb1a9a63396c36e2de 100644 --- a/src/plugins/preempt/none/Makefile.in +++ b/src/plugins/preempt/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/preempt/partition_prio/Makefile.in b/src/plugins/preempt/partition_prio/Makefile.in index 3f42ad764d7d1adb1652bc049aa90c91a43a506d..697188f8b0ed3656bd91ceb27b8edb3219669fa7 100644 --- a/src/plugins/preempt/partition_prio/Makefile.in +++ b/src/plugins/preempt/partition_prio/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/preempt/qos/Makefile.in b/src/plugins/preempt/qos/Makefile.in index a668d84807248a245d42b85e739562fa5323a860..eed144d1374dbc8e7ede88e379e85b1af0c2ea13 100644 --- a/src/plugins/preempt/qos/Makefile.in +++ b/src/plugins/preempt/qos/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/priority/Makefile.in b/src/plugins/priority/Makefile.in index 0ff2e78051d0b0ddd69ba6e406942c00c6a8eeaa..92a4128913e2f0668d94a1f68a770049c5b7a297 100644 --- a/src/plugins/priority/Makefile.in +++ b/src/plugins/priority/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/priority/basic/Makefile.in b/src/plugins/priority/basic/Makefile.in index d3af05594e3c90397fb2a1acfb7da60def4d18f9..c90d2329805ce7d131a5ab4b6195fb35007c11b2 100644 --- a/src/plugins/priority/basic/Makefile.in +++ b/src/plugins/priority/basic/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/priority/multifactor/Makefile.in b/src/plugins/priority/multifactor/Makefile.in index 0970478ffc2e56829b625b57a8edef608134adc0..69505c634bc6005dd3d093346d28129dcf398b5d 100644 --- a/src/plugins/priority/multifactor/Makefile.in +++ b/src/plugins/priority/multifactor/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -436,6 +437,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/proctrack/Makefile.in b/src/plugins/proctrack/Makefile.in index 6cb378fde3f4a7cfca453db82e8b482ec8d9d940..4a1c09973030f576e9dd61160fc689927ad96e7d 100644 --- a/src/plugins/proctrack/Makefile.in +++ b/src/plugins/proctrack/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -416,6 +417,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/proctrack/cgroup/Makefile.in b/src/plugins/proctrack/cgroup/Makefile.in index bdd41ba93c0e0eff5f3bf29b3b5f14e5f453eb1f..c8094d93e91a38442bb78d34d69beb59a464465b 100644 --- a/src/plugins/proctrack/cgroup/Makefile.in +++ b/src/plugins/proctrack/cgroup/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/proctrack/cray/Makefile.in b/src/plugins/proctrack/cray/Makefile.in index 5605c13efa634812c3f45527a70c51da352a1908..8f1290a4d2054287995129588ec0ab9279a9b741 100644 --- a/src/plugins/proctrack/cray/Makefile.in +++ b/src/plugins/proctrack/cray/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/proctrack/linuxproc/Makefile.in b/src/plugins/proctrack/linuxproc/Makefile.in index 9d3a1726a637c96980344ab0d770b1951b6aa553..ff62b4df181fd1b15a04314636ce6d5ba446788a 100644 --- a/src/plugins/proctrack/linuxproc/Makefile.in +++ b/src/plugins/proctrack/linuxproc/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/proctrack/lua/Makefile.in b/src/plugins/proctrack/lua/Makefile.in index cb26f04fd4a42718a250e139fdcb18ee877157be..f0acb086d5a6eeeb6314f9f30e951b9123b7acf1 100644 --- a/src/plugins/proctrack/lua/Makefile.in +++ b/src/plugins/proctrack/lua/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/proctrack/pgid/Makefile.in b/src/plugins/proctrack/pgid/Makefile.in index 670cf03231e07f97cfd1bf47a319571561aae809..7c8624b24249dd425f96a2e19bbf794c56b53ce8 100644 --- a/src/plugins/proctrack/pgid/Makefile.in +++ b/src/plugins/proctrack/pgid/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/proctrack/sgi_job/Makefile.in b/src/plugins/proctrack/sgi_job/Makefile.in index 20629fabb04b020f49aaa690a9b44c1568641f46..02f7c5eda1a219f9a96c3c99c7d1c9c7b8a70cb6 100644 --- a/src/plugins/proctrack/sgi_job/Makefile.in +++ b/src/plugins/proctrack/sgi_job/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/route/Makefile.in b/src/plugins/route/Makefile.in index 569c36f00c868112c94783b37dcd322ed47e8713..ebf8feec1f5aaf12c52725d9833a1b2dd401bffc 100644 --- a/src/plugins/route/Makefile.in +++ b/src/plugins/route/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/route/default/Makefile.in b/src/plugins/route/default/Makefile.in index bc737b9c1d7e70bee0b8689795e808b36040c844..d7085bd55ed35ab46a4704c43a8425648e2a0a54 100644 --- a/src/plugins/route/default/Makefile.in +++ b/src/plugins/route/default/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/route/topology/Makefile.in b/src/plugins/route/topology/Makefile.in index 9b25cdee6dbd26d216e404bb4b60dfe386c26bf7..d54495ad772f9d1ea00511ee05ea8d1ea06e320d 100644 --- a/src/plugins/route/topology/Makefile.in +++ b/src/plugins/route/topology/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/sched/Makefile.in b/src/plugins/sched/Makefile.in index ad4ec69b66dad536b1b5d4966a116560f55c9ed0..0e607a51f88591f46fc6ae7f42ede67086d203fc 100644 --- a/src/plugins/sched/Makefile.in +++ b/src/plugins/sched/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/sched/backfill/Makefile.in b/src/plugins/sched/backfill/Makefile.in index 4621d94f06b8f80e481d036c4a35179bf98b3876..3516dce4d805d15d8b670fa05cf1e2e5ea3f108e 100644 --- a/src/plugins/sched/backfill/Makefile.in +++ b/src/plugins/sched/backfill/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/sched/builtin/Makefile.in b/src/plugins/sched/builtin/Makefile.in index bd64634df822cf25eb16887d49c5aee1d754ed01..02dd32ec86d4afb64fb5992c01ce8ccb70d556fa 100644 --- a/src/plugins/sched/builtin/Makefile.in +++ b/src/plugins/sched/builtin/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/sched/hold/Makefile.in b/src/plugins/sched/hold/Makefile.in index 618836c183576d083dcc03809106ff58421c799d..a60c2237b250e5bb70e8df6bbaf0704645f3a38c 100644 --- a/src/plugins/sched/hold/Makefile.in +++ b/src/plugins/sched/hold/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/Makefile.in b/src/plugins/select/Makefile.in index f58dec3f4c1b4506792ad052ced2c03a28506099..f10b0396edcbbb083c844a1b5d72c275f712ee52 100644 --- a/src/plugins/select/Makefile.in +++ b/src/plugins/select/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/alps/Makefile.in b/src/plugins/select/alps/Makefile.in index c571bf578658540550ada93bed0d64cc8e504bee..b6cd1db72b954ebe49de5f3a7fe3af58ae40f5a9 100644 --- a/src/plugins/select/alps/Makefile.in +++ b/src/plugins/select/alps/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -487,6 +488,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/alps/libalps/Makefile.in b/src/plugins/select/alps/libalps/Makefile.in index 0b363344754d0a64646831b569cded613224447e..2e8f619612322f12b8b6c3d6e4b1cdf546a156c1 100644 --- a/src/plugins/select/alps/libalps/Makefile.in +++ b/src/plugins/select/alps/libalps/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -414,6 +415,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/alps/libemulate/Makefile.in b/src/plugins/select/alps/libemulate/Makefile.in index e43dfca33d3438d6628b1f2654112c34cb6f9edd..32f77f9404ab4b41c19421c519ce3daaa93b907b 100644 --- a/src/plugins/select/alps/libemulate/Makefile.in +++ b/src/plugins/select/alps/libemulate/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -407,6 +408,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/bluegene/Makefile.in b/src/plugins/select/bluegene/Makefile.in index 97f3c0c8f05efba2c3eaaec2ad79f26f0edb57d5..f3116031a31d32e985e006caba101ae10c4aad2c 100644 --- a/src/plugins/select/bluegene/Makefile.in +++ b/src/plugins/select/bluegene/Makefile.in @@ -164,6 +164,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -588,6 +589,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/bluegene/ba_bgq/Makefile.in b/src/plugins/select/bluegene/ba_bgq/Makefile.in index 9ced02e0331ce9ff8921945ef9998342a0b9ebff..2ba88b465da452c468083cf115a138a2d2cf78e9 100644 --- a/src/plugins/select/bluegene/ba_bgq/Makefile.in +++ b/src/plugins/select/bluegene/ba_bgq/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -437,6 +438,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/bluegene/bl_bgq/Makefile.in b/src/plugins/select/bluegene/bl_bgq/Makefile.in index 8513fdcf9f08cb689c0be4d0f624fbd2e0de00d6..96c11147538a1ad288d843cd54b5e3577c2ffa99 100644 --- a/src/plugins/select/bluegene/bl_bgq/Makefile.in +++ b/src/plugins/select/bluegene/bl_bgq/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -425,6 +426,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/bluegene/sfree/Makefile.in b/src/plugins/select/bluegene/sfree/Makefile.in index 1bd094b88a5c1a5164d3939f694f75a2e23f07f6..674f459756c2e44834580a80fdcfca618cfb6a7c 100644 --- a/src/plugins/select/bluegene/sfree/Makefile.in +++ b/src/plugins/select/bluegene/sfree/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -409,6 +410,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/cons_res/Makefile.in b/src/plugins/select/cons_res/Makefile.in index 0cc2d5c7f125ee7a2ee8b5059839862f32dfac37..78582251a344fd445381767f8108d52eb0634a42 100644 --- a/src/plugins/select/cons_res/Makefile.in +++ b/src/plugins/select/cons_res/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/cray/Makefile.in b/src/plugins/select/cray/Makefile.in index 2980b64d0f7c1a6dc8d0f3714938b25bee17bb9d..f2ad7f0d697f1e947fc2ff38730cf093a3adfa9f 100644 --- a/src/plugins/select/cray/Makefile.in +++ b/src/plugins/select/cray/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/linear/Makefile.in b/src/plugins/select/linear/Makefile.in index 4124faa1a940d8f0bab994fdd49a111b1121e5af..5f217e9beef88d1b234990f0c911a0910db58c80 100644 --- a/src/plugins/select/linear/Makefile.in +++ b/src/plugins/select/linear/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/other/Makefile.in b/src/plugins/select/other/Makefile.in index ee045d2af09ac084f94cb11d0ca7f13fccc5a6cd..c28fd7d4f836fe4c1576c5d7220a4be2e5f7309a 100644 --- a/src/plugins/select/other/Makefile.in +++ b/src/plugins/select/other/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -402,6 +403,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/select/serial/Makefile.in b/src/plugins/select/serial/Makefile.in index f7ab334fc4899a7d12b8465e50de4d0b62951dd9..07956ca59f70657ecd91e1a985fbc995e5cc9135 100644 --- a/src/plugins/select/serial/Makefile.in +++ b/src/plugins/select/serial/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/slurmctld/Makefile.in b/src/plugins/slurmctld/Makefile.in index 693212f8b363dc102f576b32d7f3117cca6515e5..3c99f7727688dab71185d8d485d10f11d7cd9f91 100644 --- a/src/plugins/slurmctld/Makefile.in +++ b/src/plugins/slurmctld/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/slurmctld/nonstop/Makefile.in b/src/plugins/slurmctld/nonstop/Makefile.in index 64b88765927dbcbd8bf7aed3826a7df65890d4e3..868a78ee8e1b1d4948b9888d7aa21070ab6acbdf 100644 --- a/src/plugins/slurmctld/nonstop/Makefile.in +++ b/src/plugins/slurmctld/nonstop/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -437,6 +438,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/slurmd/Makefile.in b/src/plugins/slurmd/Makefile.in index af36c14c4de47e525bc2dad2543741158fd811e6..90ea69ee3a966615b9d6afad748abdfa36d5e882 100644 --- a/src/plugins/slurmd/Makefile.in +++ b/src/plugins/slurmd/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/switch/Makefile.in b/src/plugins/switch/Makefile.in index 347a33dee01db333c64cc832643a527777e65f15..a36cfb3c4bc46e7b3e800261b2633efb91b7387d 100644 --- a/src/plugins/switch/Makefile.in +++ b/src/plugins/switch/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/switch/cray/Makefile.in b/src/plugins/switch/cray/Makefile.in index 58fbc544f06c8d65674ec34d92add20b3fd8c17b..b539aaf79399917d91356f9c8bc9a4747a7a717e 100644 --- a/src/plugins/switch/cray/Makefile.in +++ b/src/plugins/switch/cray/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -437,6 +438,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/switch/generic/Makefile.in b/src/plugins/switch/generic/Makefile.in index 559825f258af76b6af18d8c7912ba24180116ec8..41ae76456b1ea421746ff364b01506f9d326ed0d 100644 --- a/src/plugins/switch/generic/Makefile.in +++ b/src/plugins/switch/generic/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/switch/none/Makefile.in b/src/plugins/switch/none/Makefile.in index 1ced974f98465a626c55fae3d17efca5e8b479fd..d40f92c725658dfefecc758777cc8540cddf81e4 100644 --- a/src/plugins/switch/none/Makefile.in +++ b/src/plugins/switch/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/switch/nrt/Makefile.in b/src/plugins/switch/nrt/Makefile.in index 09e300fa46bbfdf893456611e1660d1916e7ba78..a0a8236735f127c93cb83819d42aff6ca6a6a865 100644 --- a/src/plugins/switch/nrt/Makefile.in +++ b/src/plugins/switch/nrt/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -482,6 +483,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/switch/nrt/libpermapi/Makefile.in b/src/plugins/switch/nrt/libpermapi/Makefile.in index f0983be5cf6a3d0e86b3a640a08b9d57256b2797..efa5e98b459edc62b5a22b0ebc1f8713a1311830 100644 --- a/src/plugins/switch/nrt/libpermapi/Makefile.in +++ b/src/plugins/switch/nrt/libpermapi/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/task/Makefile.in b/src/plugins/task/Makefile.in index 33ff45156813f6a36b91ecf0b48ef6b8a157d929..714b6f4d687495255d16dec606dd7e04abc12db7 100644 --- a/src/plugins/task/Makefile.in +++ b/src/plugins/task/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/task/affinity/Makefile.in b/src/plugins/task/affinity/Makefile.in index 1bb16ff0f1fa5130a66d880186341b50ea6c6d79..468423146e94ca0add3a6d2f8a831ac46ccf7fe8 100644 --- a/src/plugins/task/affinity/Makefile.in +++ b/src/plugins/task/affinity/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -446,6 +447,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/task/cgroup/Makefile.in b/src/plugins/task/cgroup/Makefile.in index 0ebb0cfbb84c1181f1242dea1adb7075075d7b11..292672128030c569d2adde6474163f3ef149c5ec 100644 --- a/src/plugins/task/cgroup/Makefile.in +++ b/src/plugins/task/cgroup/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/task/cray/Makefile.in b/src/plugins/task/cray/Makefile.in index cfeb39c04f66ee4a96e013870bb1f65a26a9d381..b9c64ba4f2dfb00ca853b73f19728e9bc31d4dfc 100644 --- a/src/plugins/task/cray/Makefile.in +++ b/src/plugins/task/cray/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/task/none/Makefile.in b/src/plugins/task/none/Makefile.in index d52d61e6ffcd7055d9e8ff2c68528b2e8fd93cac..96c60aebf3aa2f0babd0af4ebea7de5a5144a1e8 100644 --- a/src/plugins/task/none/Makefile.in +++ b/src/plugins/task/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -433,6 +434,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/topology/3d_torus/Makefile.in b/src/plugins/topology/3d_torus/Makefile.in index e03bae46a6de4372cdd0bf73e16c76f196b04d48..73695356bd208138489f732503a785ee710c1ef9 100644 --- a/src/plugins/topology/3d_torus/Makefile.in +++ b/src/plugins/topology/3d_torus/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/topology/Makefile.in b/src/plugins/topology/Makefile.in index 1acbd215b3d04d9edd048dc1fe48ad406ae2b637..e2b96b5ac9a5562f5f8ae61d390a2746fe51331d 100644 --- a/src/plugins/topology/Makefile.in +++ b/src/plugins/topology/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -413,6 +414,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/topology/hypercube/Makefile.in b/src/plugins/topology/hypercube/Makefile.in index 0cb7f69b85626869fa3318320a659899b776c85d..326e798c85aa8a5428f34053982354cc68309aa3 100644 --- a/src/plugins/topology/hypercube/Makefile.in +++ b/src/plugins/topology/hypercube/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/topology/node_rank/Makefile.in b/src/plugins/topology/node_rank/Makefile.in index dcacb8af9e5510a28e7665fa89aaa45e17681ea5..ea3017ca08be675e7dcb6a11659b8a12eef8c113 100644 --- a/src/plugins/topology/node_rank/Makefile.in +++ b/src/plugins/topology/node_rank/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/topology/none/Makefile.in b/src/plugins/topology/none/Makefile.in index f654752212f6c10498b311b9143797e869fcf810..ddeb58c63e8f50008e8b93156802688a698c439e 100644 --- a/src/plugins/topology/none/Makefile.in +++ b/src/plugins/topology/none/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/plugins/topology/tree/Makefile.in b/src/plugins/topology/tree/Makefile.in index 1ee25c7b9acf9457ee5447cb64d9f1829953d495..a4dd2983ea294c7a110207a1dd34549026df2b40 100644 --- a/src/plugins/topology/tree/Makefile.in +++ b/src/plugins/topology/tree/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sacct/Makefile.in b/src/sacct/Makefile.in index 0ae3e5b143eb5eb6aaa6bb619e0584eddfa9f2fe..27a4b64cc5e845f7f560f2a6fdf3eaddb0f597dd 100644 --- a/src/sacct/Makefile.in +++ b/src/sacct/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sacctmgr/Makefile.in b/src/sacctmgr/Makefile.in index b4abf5617ad59f2e978044d07cc7edfc5a607bfc..c1473dc74b7d5a4ffe895e198d3e6a5ef0d00530 100644 --- a/src/sacctmgr/Makefile.in +++ b/src/sacctmgr/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -417,6 +418,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/salloc/Makefile.in b/src/salloc/Makefile.in index 278746d960388499d9af9b1ebefbbef7964a2dbb..2cb0d7234b8f1790f1ef5b1a46848607168a9400 100644 --- a/src/salloc/Makefile.in +++ b/src/salloc/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -409,6 +410,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sattach/Makefile.in b/src/sattach/Makefile.in index 58d8e4ce97e0cd07fd9f5c72b5ffd8a43d61eebd..75f90305485c617c0b86dcfac044c5ce34e694bf 100644 --- a/src/sattach/Makefile.in +++ b/src/sattach/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -409,6 +410,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sbatch/Makefile.in b/src/sbatch/Makefile.in index a5bfa4e053a8baf94a11d43f358255f2977b9278..80ba1e2b806c1a5d2b8927c49bd11d4a851fbf03 100644 --- a/src/sbatch/Makefile.in +++ b/src/sbatch/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -408,6 +409,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sbcast/Makefile.in b/src/sbcast/Makefile.in index 3a238256c33d4f038c08e5c6790ee32d64486831..eb2ca942c3a98889cbb3b820bdcb1b3fa6d73988 100644 --- a/src/sbcast/Makefile.in +++ b/src/sbcast/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/scancel/Makefile.in b/src/scancel/Makefile.in index aac9aecc559d65c364c3197a31680af7d66228b9..f138293617a34241d90dbab2adb081818c370613 100644 --- a/src/scancel/Makefile.in +++ b/src/scancel/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -410,6 +411,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/scontrol/Makefile.in b/src/scontrol/Makefile.in index ddf00292a91de89c9dd96eb971218f0a43dc2c00..44f538726f85363ffcfa124a3aa87a2c11f1a363 100644 --- a/src/scontrol/Makefile.in +++ b/src/scontrol/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -414,6 +415,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sdiag/Makefile.in b/src/sdiag/Makefile.in index f8aa2091a7f0e4a3bd4657542c71642cacfe2fcc..aaee943a846f4f4f6e8802301b6725603c257117 100644 --- a/src/sdiag/Makefile.in +++ b/src/sdiag/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -408,6 +409,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sinfo/Makefile.in b/src/sinfo/Makefile.in index 1d512d6d5f72c95f6ddf8aa22d6a791dc19f850b..509c78c6132673e84eb593abc1abb7665bf0b3bc 100644 --- a/src/sinfo/Makefile.in +++ b/src/sinfo/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -412,6 +413,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/slurmctld/Makefile.in b/src/slurmctld/Makefile.in index 50382832551b29addd3a77efaac3045d7743c63e..82f4949da41ce8db27e71b9f3025fd8ff7b0b88f 100644 --- a/src/slurmctld/Makefile.in +++ b/src/slurmctld/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -420,6 +421,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/slurmd/Makefile.in b/src/slurmd/Makefile.in index 5fc3af3fa181b5b32d9b95e6d458a09a23f12759..8d75a0069646e68596394763bc78f29c56443cdc 100644 --- a/src/slurmd/Makefile.in +++ b/src/slurmd/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/slurmd/common/Makefile.in b/src/slurmd/common/Makefile.in index 2b82f5ccc86e17db1334aadc7861fd60fcc7bae6..ddb9a4e0466c83cba2c2dc8ca650ffcea57344dd 100644 --- a/src/slurmd/common/Makefile.in +++ b/src/slurmd/common/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -424,6 +425,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/slurmd/slurmd/Makefile.in b/src/slurmd/slurmd/Makefile.in index 586e26b7df15a7886b7b4b423411208720f67c3e..8c8a8fac02a158af59346b04705965be13a495d9 100644 --- a/src/slurmd/slurmd/Makefile.in +++ b/src/slurmd/slurmd/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -410,6 +411,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/slurmd/slurmstepd/Makefile.in b/src/slurmd/slurmstepd/Makefile.in index 2da7cfda352041a1196a812a603c1b61768ac4e1..d007d037d7ea8e5acf4878db3f4726e040bb7787 100644 --- a/src/slurmd/slurmstepd/Makefile.in +++ b/src/slurmd/slurmstepd/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -412,6 +413,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/slurmdbd/Makefile.in b/src/slurmdbd/Makefile.in index c7842c39d39640d1f3632e0a20223a6da5c2b47c..8685edaaa7e1ce553cd724b90a90201af14adaec 100644 --- a/src/slurmdbd/Makefile.in +++ b/src/slurmdbd/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -409,6 +410,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/smap/Makefile.in b/src/smap/Makefile.in index 650b988ec4fdf0e2ccc81f968f443d303d19db70..2e85b94e2b2704d1f2d4be311c49b66ff2a21e07 100644 --- a/src/smap/Makefile.in +++ b/src/smap/Makefile.in @@ -143,6 +143,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -429,6 +430,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/smd/Makefile.in b/src/smd/Makefile.in index bcc84fe6e774517c769d53c56e7d98eb9cca559f..9f2288ed86da6d8695f99945d917602110a72bd6 100644 --- a/src/smd/Makefile.in +++ b/src/smd/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -351,6 +352,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sprio/Makefile.in b/src/sprio/Makefile.in index 4663e29063b24bfd4c1196d5a91af21c7023401e..658adb403e443e15a8c6a87366a053662b1ec2ac 100644 --- a/src/sprio/Makefile.in +++ b/src/sprio/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/squeue/Makefile.in b/src/squeue/Makefile.in index 6fbb0378533f14424f52c0dd3e5dc6ccf46a4fb3..f608bb575147aabdc7b31d27a02e18e943798a77 100644 --- a/src/squeue/Makefile.in +++ b/src/squeue/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -412,6 +413,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sreport/Makefile.in b/src/sreport/Makefile.in index 8f1afcd99a8de5de7f9208e6a409891baf82a793..6b01caef076699e64a1b367b0409fd9f8b452683 100644 --- a/src/sreport/Makefile.in +++ b/src/sreport/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -409,6 +410,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/srun/Makefile.in b/src/srun/Makefile.in index 575a583e7e4eb7aadea7ee91be5515ad5266f22c..f3486bda43ada30dbf73ee96185582192589ae3d 100644 --- a/src/srun/Makefile.in +++ b/src/srun/Makefile.in @@ -140,6 +140,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -454,6 +455,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/srun/libsrun/Makefile.in b/src/srun/libsrun/Makefile.in index 95dbcd3dda801b322ef4e8b0a751fbae08f967cc..c88f30d3cd083478ed8c625468c6280b87fd9ace 100644 --- a/src/srun/libsrun/Makefile.in +++ b/src/srun/libsrun/Makefile.in @@ -135,6 +135,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -407,6 +408,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/srun_cr/Makefile.in b/src/srun_cr/Makefile.in index db042b6e608854e183066a4a4bdb8db0392b5cb2..e0f96283fc36e20dad05cc6394950893bd9c8022 100644 --- a/src/srun_cr/Makefile.in +++ b/src/srun_cr/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -412,6 +413,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sshare/Makefile.in b/src/sshare/Makefile.in index ab290170935e0d4c6ef4a52d4b8d107b7559a11f..89b27bd70cc40e721a9f79dc46552686bdc68b41 100644 --- a/src/sshare/Makefile.in +++ b/src/sshare/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -407,6 +408,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sstat/Makefile.in b/src/sstat/Makefile.in index 2415f9230954295f859ae6f49833c6d7fcc150c4..c28a54fa01a6bf37e27825acffa318283daf03a2 100644 --- a/src/sstat/Makefile.in +++ b/src/sstat/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -408,6 +409,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/strigger/Makefile.in b/src/strigger/Makefile.in index 9294bd8d248977042d403bf8bc8da65c86519244..a890b3942777e229400ca6054a2661605ea323a4 100644 --- a/src/strigger/Makefile.in +++ b/src/strigger/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/src/sview/Makefile.in b/src/sview/Makefile.in index 997a506904d8b0c51412d7612461d5195d7f9513..cd24023624570409479be5ac4f74468f3d6e6405 100644 --- a/src/sview/Makefile.in +++ b/src/sview/Makefile.in @@ -137,6 +137,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -434,6 +435,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/testsuite/Makefile.in b/testsuite/Makefile.in index 03d8e819895ef5fc85959d523c1368bad17ecbac..afc61df22c0dfebb64e9ef7fba8ffc864bb90b06 100644 --- a/testsuite/Makefile.in +++ b/testsuite/Makefile.in @@ -133,6 +133,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -418,6 +419,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/testsuite/expect/Makefile.in b/testsuite/expect/Makefile.in index b4c0b7428c477b2cff83aa07d11ffb8fd0099168..d7628a9cf049b6a92264a9db01502aaad5edaadf 100644 --- a/testsuite/expect/Makefile.in +++ b/testsuite/expect/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -351,6 +352,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/testsuite/slurm_unit/Makefile.in b/testsuite/slurm_unit/Makefile.in index 27ccfd186611f123eb63a502ad81d668bc507c78..198970b46b9f261430a4131cd7508441f24e3e88 100644 --- a/testsuite/slurm_unit/Makefile.in +++ b/testsuite/slurm_unit/Makefile.in @@ -132,6 +132,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -411,6 +412,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/testsuite/slurm_unit/api/Makefile.in b/testsuite/slurm_unit/api/Makefile.in index 0c9230b6f61b0be3d89c4745b4c602edb7f50eb5..9483f6b8ba220923879bf86ad4a03b554894d998 100644 --- a/testsuite/slurm_unit/api/Makefile.in +++ b/testsuite/slurm_unit/api/Makefile.in @@ -134,6 +134,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -649,6 +650,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/testsuite/slurm_unit/api/manual/Makefile.in b/testsuite/slurm_unit/api/manual/Makefile.in index 124f43ccf16b16b3c7fb66704225a9b95f669e6e..6dfe3a5183399e1848311eda53259a1013abcb3b 100644 --- a/testsuite/slurm_unit/api/manual/Makefile.in +++ b/testsuite/slurm_unit/api/manual/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -435,6 +436,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/testsuite/slurm_unit/common/Makefile.in b/testsuite/slurm_unit/common/Makefile.in index 36382d3648b7fa9ca60322ca837d836fac97d88b..3590e2d672cedf3d70cf8eb25209957aad68fafd 100644 --- a/testsuite/slurm_unit/common/Makefile.in +++ b/testsuite/slurm_unit/common/Makefile.in @@ -138,6 +138,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -683,6 +684,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/testsuite/slurm_unit/common/slurm_protocol_pack/Makefile.in b/testsuite/slurm_unit/common/slurm_protocol_pack/Makefile.in index 42a139685cdc0bb1ea0f25bb67765d3a2bd8d2ed..a63a50a5717faa7c877d988c835cd5f1d425fc61 100644 --- a/testsuite/slurm_unit/common/slurm_protocol_pack/Makefile.in +++ b/testsuite/slurm_unit/common/slurm_protocol_pack/Makefile.in @@ -136,6 +136,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -617,6 +618,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ diff --git a/testsuite/slurm_unit/common/slurmdb_pack/Makefile.in b/testsuite/slurm_unit/common/slurmdb_pack/Makefile.in index 733192e942d36553024cee725d8b1336fdb661fd..d381c4066aa661a149d4c9357cbbaa617534590b 100644 --- a/testsuite/slurm_unit/common/slurmdb_pack/Makefile.in +++ b/testsuite/slurm_unit/common/slurmdb_pack/Makefile.in @@ -149,6 +149,7 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_zlib.m4 \ $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ + $(top_srcdir)/auxdir/x_ac_systemd.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) @@ -762,6 +763,7 @@ SSL_LDFLAGS = @SSL_LDFLAGS@ SSL_LIBS = @SSL_LIBS@ STRIP = @STRIP@ SUCMD = @SUCMD@ +SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ UTIL_LIBS = @UTIL_LIBS@ VERSION = @VERSION@ ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@