diff --git a/Makefile.in b/Makefile.in index 9b062c58ed2bf70d40380ed13666ca63f5ca06e2..4ee6708e56fbf8355c04033b7695c6e648627308 100644 --- a/Makefile.in +++ b/Makefile.in @@ -131,7 +131,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/RELEASE_NOTES b/RELEASE_NOTES index d6cc623e9ff0a911e5f3e9be5857eae8afe6f0c3..befde19d96f89c1cc78109756f589e486aae4788 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -32,6 +32,8 @@ NOTE: Cray/ALPS support has been removed. NOTE: Built-in BLCR support has been removed. +NOTE: The proctrack/sgi_job plugin has been removed. + HIGHLIGHTS ========== -- Add select/cons_tres plugin, which offers similar functionality to cons_res diff --git a/auxdir/Makefile.am b/auxdir/Makefile.am index 74a9bbf48556bd22163c51234a2a0c89b5abfdb3..9120fba594edd421864053b6090c3fbb3c72673f 100644 --- a/auxdir/Makefile.am +++ b/auxdir/Makefile.am @@ -34,7 +34,6 @@ EXTRA_DIST = \ x_ac_ptrace.m4 \ x_ac_readline.m4 \ x_ac_setproctitle.m4 \ - x_ac_sgi_job.m4 \ x_ac_slurm_ssl.m4 \ x_ac_systemd.m4 \ x_ac_uid_gid_size.m4 diff --git a/auxdir/Makefile.in b/auxdir/Makefile.in index 937239969abb38d817d7a3ccaf0a9a89abf97672..9ed70c28aa853d9ac42322a2e9773d31ff6b9633 100644 --- a/auxdir/Makefile.in +++ b/auxdir/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ @@ -455,7 +454,6 @@ EXTRA_DIST = \ x_ac_ptrace.m4 \ x_ac_readline.m4 \ x_ac_setproctitle.m4 \ - x_ac_sgi_job.m4 \ x_ac_slurm_ssl.m4 \ x_ac_systemd.m4 \ x_ac_uid_gid_size.m4 diff --git a/auxdir/x_ac_sgi_job.m4 b/auxdir/x_ac_sgi_job.m4 deleted file mode 100644 index 5b40886ddf5dd73e500735ca6df26fd95b6f5f80..0000000000000000000000000000000000000000 --- a/auxdir/x_ac_sgi_job.m4 +++ /dev/null @@ -1,19 +0,0 @@ -##***************************************************************************** -# AUTHOR: -# Mark Grondona <mgrondona@llnl.gov> -# -# SYNOPSIS: -# AC_SGI_JOB -# -# DESCRIPTION: -# Check for presence of SGI job container support via libjob.so -##***************************************************************************** - - -AC_DEFUN([X_AC_SGI_JOB], -[ - AC_CHECK_LIB([job], [job_attachpid], [ac_have_sgi_job="yes"], []) - AC_MSG_CHECKING([for SGI job container support]) - AC_MSG_RESULT([${ac_have_sgi_job=no}]) - AM_CONDITIONAL(HAVE_SGI_JOB, test "x$ac_have_sgi_job" = "xyes") -]) diff --git a/configure b/configure index a043e0c7e9d7cd33ac9390424aa4eba3031510cb..01685a68e300a1b1f6e31938a2899a724de36e14 100755 --- a/configure +++ b/configure @@ -673,8 +673,6 @@ HAVE_NETLOC_TRUE NETLOC_LDFLAGS NETLOC_CPPFLAGS NETLOC_LIBS -HAVE_SGI_JOB_FALSE -HAVE_SGI_JOB_TRUE HAVE_NRT HAVE_NRT_FALSE HAVE_NRT_TRUE @@ -23549,62 +23547,6 @@ fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for job_attachpid in -ljob" >&5 -$as_echo_n "checking for job_attachpid in -ljob... " >&6; } -if ${ac_cv_lib_job_job_attachpid+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ljob $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char job_attachpid (); -int -main () -{ -return job_attachpid (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_job_job_attachpid=yes -else - ac_cv_lib_job_job_attachpid=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_job_job_attachpid" >&5 -$as_echo "$ac_cv_lib_job_job_attachpid" >&6; } -if test "x$ac_cv_lib_job_job_attachpid" = xyes; then : - ac_have_sgi_job="yes" -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SGI job container support" >&5 -$as_echo_n "checking for SGI job container support... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${ac_have_sgi_job=no}" >&5 -$as_echo "${ac_have_sgi_job=no}" >&6; } - if test "x$ac_have_sgi_job" = "xyes"; then - HAVE_SGI_JOB_TRUE= - HAVE_SGI_JOB_FALSE='#' -else - HAVE_SGI_JOB_TRUE='#' - HAVE_SGI_JOB_FALSE= -fi - - - - - _x_ac_netloc_dirs="/usr /usr/local" _x_ac_netloc_libs="lib64 lib" x_ac_cv_netloc_nosub="no" @@ -25011,7 +24953,7 @@ $as_echo "${x_ac_deprecated=no}" >&6; } -ac_config_files="$ac_config_files Makefile auxdir/Makefile contribs/Makefile contribs/cray/Makefile contribs/cray/csm/Makefile contribs/cray/slurmsmwd/Makefile contribs/lua/Makefile contribs/mic/Makefile contribs/pam/Makefile contribs/pam_slurm_adopt/Makefile contribs/perlapi/Makefile contribs/perlapi/libslurm/Makefile contribs/perlapi/libslurm/perl/Makefile.PL contribs/perlapi/libslurmdb/Makefile contribs/perlapi/libslurmdb/perl/Makefile.PL contribs/seff/Makefile contribs/torque/Makefile contribs/openlava/Makefile contribs/sgather/Makefile contribs/sgi/Makefile contribs/sjobexit/Makefile contribs/pmi/Makefile contribs/pmi2/Makefile doc/Makefile doc/man/Makefile doc/man/man1/Makefile doc/man/man3/Makefile doc/man/man5/Makefile doc/man/man8/Makefile doc/html/Makefile doc/html/configurator.html doc/html/configurator.easy.html etc/Makefile src/Makefile src/api/Makefile src/bcast/Makefile src/common/Makefile src/db_api/Makefile src/layouts/Makefile src/layouts/power/Makefile src/layouts/unit/Makefile src/database/Makefile src/sacct/Makefile src/sacctmgr/Makefile src/sreport/Makefile src/salloc/Makefile src/sbatch/Makefile src/sbcast/Makefile src/sattach/Makefile src/scancel/Makefile src/scontrol/Makefile src/sdiag/Makefile src/sinfo/Makefile src/slurmctld/Makefile src/slurmd/Makefile src/slurmd/common/Makefile src/slurmd/slurmd/Makefile src/slurmd/slurmstepd/Makefile src/slurmdbd/Makefile src/smap/Makefile src/sprio/Makefile src/squeue/Makefile src/srun/Makefile src/srun/libsrun/Makefile src/srun_cr/Makefile src/sshare/Makefile src/sstat/Makefile src/strigger/Makefile src/sview/Makefile src/plugins/Makefile src/plugins/accounting_storage/Makefile src/plugins/accounting_storage/common/Makefile src/plugins/accounting_storage/filetxt/Makefile src/plugins/accounting_storage/mysql/Makefile src/plugins/accounting_storage/none/Makefile src/plugins/accounting_storage/slurmdbd/Makefile src/plugins/acct_gather_energy/Makefile src/plugins/acct_gather_energy/cray/Makefile src/plugins/acct_gather_energy/rapl/Makefile src/plugins/acct_gather_energy/ibmaem/Makefile src/plugins/acct_gather_energy/ipmi/Makefile src/plugins/acct_gather_energy/none/Makefile src/plugins/acct_gather_interconnect/Makefile src/plugins/acct_gather_interconnect/ofed/Makefile src/plugins/acct_gather_interconnect/none/Makefile src/plugins/acct_gather_filesystem/Makefile src/plugins/acct_gather_filesystem/lustre/Makefile src/plugins/acct_gather_filesystem/none/Makefile src/plugins/acct_gather_profile/Makefile src/plugins/acct_gather_profile/hdf5/Makefile src/plugins/acct_gather_profile/hdf5/sh5util/Makefile src/plugins/acct_gather_profile/influxdb/Makefile src/plugins/acct_gather_profile/none/Makefile src/plugins/auth/Makefile src/plugins/auth/munge/Makefile src/plugins/auth/none/Makefile src/plugins/burst_buffer/Makefile src/plugins/burst_buffer/common/Makefile src/plugins/burst_buffer/cray/Makefile src/plugins/burst_buffer/generic/Makefile src/plugins/checkpoint/Makefile src/plugins/checkpoint/blcr/Makefile src/plugins/checkpoint/blcr/cr_checkpoint.sh src/plugins/checkpoint/blcr/cr_restart.sh src/plugins/checkpoint/none/Makefile src/plugins/checkpoint/ompi/Makefile src/plugins/core_spec/Makefile src/plugins/core_spec/cray/Makefile src/plugins/core_spec/none/Makefile src/plugins/crypto/Makefile src/plugins/crypto/munge/Makefile src/plugins/crypto/openssl/Makefile src/plugins/ext_sensors/Makefile src/plugins/ext_sensors/rrd/Makefile src/plugins/ext_sensors/none/Makefile src/plugins/gres/Makefile src/plugins/gres/common/Makefile src/plugins/gres/gpu/Makefile src/plugins/gres/nic/Makefile src/plugins/gres/mic/Makefile src/plugins/jobacct_gather/Makefile src/plugins/jobacct_gather/common/Makefile src/plugins/jobacct_gather/linux/Makefile src/plugins/jobacct_gather/cgroup/Makefile src/plugins/jobacct_gather/none/Makefile src/plugins/jobcomp/Makefile src/plugins/jobcomp/elasticsearch/Makefile src/plugins/jobcomp/filetxt/Makefile src/plugins/jobcomp/none/Makefile src/plugins/jobcomp/script/Makefile src/plugins/jobcomp/mysql/Makefile src/plugins/job_container/Makefile src/plugins/job_container/cncu/Makefile src/plugins/job_container/none/Makefile src/plugins/job_submit/Makefile src/plugins/job_submit/all_partitions/Makefile src/plugins/job_submit/cray/Makefile src/plugins/job_submit/defaults/Makefile src/plugins/job_submit/logging/Makefile src/plugins/job_submit/lua/Makefile src/plugins/job_submit/partition/Makefile src/plugins/job_submit/pbs/Makefile src/plugins/job_submit/require_timelimit/Makefile src/plugins/job_submit/throttle/Makefile src/plugins/launch/Makefile src/plugins/launch/poe/Makefile src/plugins/launch/slurm/Makefile src/plugins/mcs/Makefile src/plugins/mcs/account/Makefile src/plugins/mcs/group/Makefile src/plugins/mcs/none/Makefile src/plugins/mcs/user/Makefile src/plugins/node_features/Makefile src/plugins/node_features/knl_cray/Makefile src/plugins/node_features/knl_generic/Makefile src/plugins/power/Makefile src/plugins/power/common/Makefile src/plugins/power/cray/Makefile src/plugins/power/none/Makefile src/plugins/preempt/Makefile src/plugins/preempt/none/Makefile src/plugins/preempt/partition_prio/Makefile src/plugins/preempt/qos/Makefile src/plugins/priority/Makefile src/plugins/priority/basic/Makefile src/plugins/priority/multifactor/Makefile src/plugins/proctrack/Makefile src/plugins/proctrack/cray/Makefile src/plugins/proctrack/cgroup/Makefile src/plugins/proctrack/pgid/Makefile src/plugins/proctrack/linuxproc/Makefile src/plugins/proctrack/sgi_job/Makefile src/plugins/proctrack/lua/Makefile src/plugins/route/Makefile src/plugins/route/default/Makefile src/plugins/route/topology/Makefile src/plugins/sched/Makefile src/plugins/sched/backfill/Makefile src/plugins/sched/builtin/Makefile src/plugins/sched/hold/Makefile src/plugins/select/Makefile src/plugins/select/cons_res/Makefile src/plugins/select/cons_tres/Makefile src/plugins/select/cray/Makefile src/plugins/select/linear/Makefile src/plugins/select/other/Makefile src/plugins/select/serial/Makefile src/plugins/slurmctld/Makefile src/plugins/slurmctld/nonstop/Makefile src/plugins/switch/Makefile src/plugins/switch/cray/Makefile src/plugins/switch/generic/Makefile src/plugins/switch/none/Makefile src/plugins/switch/nrt/Makefile src/plugins/switch/nrt/libpermapi/Makefile src/plugins/mpi/Makefile src/plugins/mpi/none/Makefile src/plugins/mpi/openmpi/Makefile src/plugins/mpi/pmi2/Makefile src/plugins/mpi/pmix/Makefile src/plugins/task/Makefile src/plugins/task/affinity/Makefile src/plugins/task/cgroup/Makefile src/plugins/task/cray/Makefile src/plugins/task/none/Makefile src/plugins/topology/Makefile src/plugins/topology/3d_torus/Makefile src/plugins/topology/hypercube/Makefile src/plugins/topology/node_rank/Makefile src/plugins/topology/none/Makefile src/plugins/topology/tree/Makefile testsuite/Makefile testsuite/expect/Makefile testsuite/slurm_unit/Makefile testsuite/slurm_unit/api/Makefile testsuite/slurm_unit/api/manual/Makefile testsuite/slurm_unit/common/Makefile testsuite/slurm_unit/common/slurm_protocol_pack/Makefile testsuite/slurm_unit/common/slurmdb_pack/Makefile" +ac_config_files="$ac_config_files Makefile auxdir/Makefile contribs/Makefile contribs/cray/Makefile contribs/cray/csm/Makefile contribs/cray/slurmsmwd/Makefile contribs/lua/Makefile contribs/mic/Makefile contribs/pam/Makefile contribs/pam_slurm_adopt/Makefile contribs/perlapi/Makefile contribs/perlapi/libslurm/Makefile contribs/perlapi/libslurm/perl/Makefile.PL contribs/perlapi/libslurmdb/Makefile contribs/perlapi/libslurmdb/perl/Makefile.PL contribs/seff/Makefile contribs/torque/Makefile contribs/openlava/Makefile contribs/sgather/Makefile contribs/sgi/Makefile contribs/sjobexit/Makefile contribs/pmi/Makefile contribs/pmi2/Makefile doc/Makefile doc/man/Makefile doc/man/man1/Makefile doc/man/man3/Makefile doc/man/man5/Makefile doc/man/man8/Makefile doc/html/Makefile doc/html/configurator.html doc/html/configurator.easy.html etc/Makefile src/Makefile src/api/Makefile src/bcast/Makefile src/common/Makefile src/db_api/Makefile src/layouts/Makefile src/layouts/power/Makefile src/layouts/unit/Makefile src/database/Makefile src/sacct/Makefile src/sacctmgr/Makefile src/sreport/Makefile src/salloc/Makefile src/sbatch/Makefile src/sbcast/Makefile src/sattach/Makefile src/scancel/Makefile src/scontrol/Makefile src/sdiag/Makefile src/sinfo/Makefile src/slurmctld/Makefile src/slurmd/Makefile src/slurmd/common/Makefile src/slurmd/slurmd/Makefile src/slurmd/slurmstepd/Makefile src/slurmdbd/Makefile src/smap/Makefile src/sprio/Makefile src/squeue/Makefile src/srun/Makefile src/srun/libsrun/Makefile src/srun_cr/Makefile src/sshare/Makefile src/sstat/Makefile src/strigger/Makefile src/sview/Makefile src/plugins/Makefile src/plugins/accounting_storage/Makefile src/plugins/accounting_storage/common/Makefile src/plugins/accounting_storage/filetxt/Makefile src/plugins/accounting_storage/mysql/Makefile src/plugins/accounting_storage/none/Makefile src/plugins/accounting_storage/slurmdbd/Makefile src/plugins/acct_gather_energy/Makefile src/plugins/acct_gather_energy/cray/Makefile src/plugins/acct_gather_energy/rapl/Makefile src/plugins/acct_gather_energy/ibmaem/Makefile src/plugins/acct_gather_energy/ipmi/Makefile src/plugins/acct_gather_energy/none/Makefile src/plugins/acct_gather_interconnect/Makefile src/plugins/acct_gather_interconnect/ofed/Makefile src/plugins/acct_gather_interconnect/none/Makefile src/plugins/acct_gather_filesystem/Makefile src/plugins/acct_gather_filesystem/lustre/Makefile src/plugins/acct_gather_filesystem/none/Makefile src/plugins/acct_gather_profile/Makefile src/plugins/acct_gather_profile/hdf5/Makefile src/plugins/acct_gather_profile/hdf5/sh5util/Makefile src/plugins/acct_gather_profile/influxdb/Makefile src/plugins/acct_gather_profile/none/Makefile src/plugins/auth/Makefile src/plugins/auth/munge/Makefile src/plugins/auth/none/Makefile src/plugins/burst_buffer/Makefile src/plugins/burst_buffer/common/Makefile src/plugins/burst_buffer/cray/Makefile src/plugins/burst_buffer/generic/Makefile src/plugins/checkpoint/Makefile src/plugins/checkpoint/blcr/Makefile src/plugins/checkpoint/blcr/cr_checkpoint.sh src/plugins/checkpoint/blcr/cr_restart.sh src/plugins/checkpoint/none/Makefile src/plugins/checkpoint/ompi/Makefile src/plugins/core_spec/Makefile src/plugins/core_spec/cray/Makefile src/plugins/core_spec/none/Makefile src/plugins/crypto/Makefile src/plugins/crypto/munge/Makefile src/plugins/crypto/openssl/Makefile src/plugins/ext_sensors/Makefile src/plugins/ext_sensors/rrd/Makefile src/plugins/ext_sensors/none/Makefile src/plugins/gres/Makefile src/plugins/gres/common/Makefile src/plugins/gres/gpu/Makefile src/plugins/gres/nic/Makefile src/plugins/gres/mic/Makefile src/plugins/jobacct_gather/Makefile src/plugins/jobacct_gather/common/Makefile src/plugins/jobacct_gather/linux/Makefile src/plugins/jobacct_gather/cgroup/Makefile src/plugins/jobacct_gather/none/Makefile src/plugins/jobcomp/Makefile src/plugins/jobcomp/elasticsearch/Makefile src/plugins/jobcomp/filetxt/Makefile src/plugins/jobcomp/none/Makefile src/plugins/jobcomp/script/Makefile src/plugins/jobcomp/mysql/Makefile src/plugins/job_container/Makefile src/plugins/job_container/cncu/Makefile src/plugins/job_container/none/Makefile src/plugins/job_submit/Makefile src/plugins/job_submit/all_partitions/Makefile src/plugins/job_submit/cray/Makefile src/plugins/job_submit/defaults/Makefile src/plugins/job_submit/logging/Makefile src/plugins/job_submit/lua/Makefile src/plugins/job_submit/partition/Makefile src/plugins/job_submit/pbs/Makefile src/plugins/job_submit/require_timelimit/Makefile src/plugins/job_submit/throttle/Makefile src/plugins/launch/Makefile src/plugins/launch/poe/Makefile src/plugins/launch/slurm/Makefile src/plugins/mcs/Makefile src/plugins/mcs/account/Makefile src/plugins/mcs/group/Makefile src/plugins/mcs/none/Makefile src/plugins/mcs/user/Makefile src/plugins/node_features/Makefile src/plugins/node_features/knl_cray/Makefile src/plugins/node_features/knl_generic/Makefile src/plugins/power/Makefile src/plugins/power/common/Makefile src/plugins/power/cray/Makefile src/plugins/power/none/Makefile src/plugins/preempt/Makefile src/plugins/preempt/none/Makefile src/plugins/preempt/partition_prio/Makefile src/plugins/preempt/qos/Makefile src/plugins/priority/Makefile src/plugins/priority/basic/Makefile src/plugins/priority/multifactor/Makefile src/plugins/proctrack/Makefile src/plugins/proctrack/cray/Makefile src/plugins/proctrack/cgroup/Makefile src/plugins/proctrack/pgid/Makefile src/plugins/proctrack/linuxproc/Makefile src/plugins/proctrack/lua/Makefile src/plugins/route/Makefile src/plugins/route/default/Makefile src/plugins/route/topology/Makefile src/plugins/sched/Makefile src/plugins/sched/backfill/Makefile src/plugins/sched/builtin/Makefile src/plugins/sched/hold/Makefile src/plugins/select/Makefile src/plugins/select/cons_res/Makefile src/plugins/select/cons_tres/Makefile src/plugins/select/cray/Makefile src/plugins/select/linear/Makefile src/plugins/select/other/Makefile src/plugins/select/serial/Makefile src/plugins/slurmctld/Makefile src/plugins/slurmctld/nonstop/Makefile src/plugins/switch/Makefile src/plugins/switch/cray/Makefile src/plugins/switch/generic/Makefile src/plugins/switch/none/Makefile src/plugins/switch/nrt/Makefile src/plugins/switch/nrt/libpermapi/Makefile src/plugins/mpi/Makefile src/plugins/mpi/none/Makefile src/plugins/mpi/openmpi/Makefile src/plugins/mpi/pmi2/Makefile src/plugins/mpi/pmix/Makefile src/plugins/task/Makefile src/plugins/task/affinity/Makefile src/plugins/task/cgroup/Makefile src/plugins/task/cray/Makefile src/plugins/task/none/Makefile src/plugins/topology/Makefile src/plugins/topology/3d_torus/Makefile src/plugins/topology/hypercube/Makefile src/plugins/topology/node_rank/Makefile src/plugins/topology/none/Makefile src/plugins/topology/tree/Makefile testsuite/Makefile testsuite/expect/Makefile testsuite/slurm_unit/Makefile testsuite/slurm_unit/api/Makefile testsuite/slurm_unit/api/manual/Makefile testsuite/slurm_unit/common/Makefile testsuite/slurm_unit/common/slurm_protocol_pack/Makefile testsuite/slurm_unit/common/slurmdb_pack/Makefile" cat >confcache <<\_ACEOF @@ -25276,10 +25218,6 @@ if test -z "${HAVE_NRT_TRUE}" && test -z "${HAVE_NRT_FALSE}"; then as_fn_error $? "conditional \"HAVE_NRT\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi -if test -z "${HAVE_SGI_JOB_TRUE}" && test -z "${HAVE_SGI_JOB_FALSE}"; then - as_fn_error $? "conditional \"HAVE_SGI_JOB\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi if test -z "${HAVE_NETLOC_TRUE}" && test -z "${HAVE_NETLOC_FALSE}"; then as_fn_error $? "conditional \"HAVE_NETLOC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 @@ -26465,7 +26403,6 @@ do "src/plugins/proctrack/cgroup/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/proctrack/cgroup/Makefile" ;; "src/plugins/proctrack/pgid/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/proctrack/pgid/Makefile" ;; "src/plugins/proctrack/linuxproc/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/proctrack/linuxproc/Makefile" ;; - "src/plugins/proctrack/sgi_job/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/proctrack/sgi_job/Makefile" ;; "src/plugins/proctrack/lua/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/proctrack/lua/Makefile" ;; "src/plugins/route/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/route/Makefile" ;; "src/plugins/route/default/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/route/default/Makefile" ;; diff --git a/configure.ac b/configure.ac index 83c9b908a396432d9efbe3a687807c02c394b237..404b4f438a0f79404a6f88b5136890941c064515 100644 --- a/configure.ac +++ b/configure.ac @@ -285,11 +285,6 @@ dnl check for whether to include IBM NRT (Network Resource Table) support dnl X_AC_NRT -dnl check for SGI job container support -dnl -X_AC_SGI_JOB - - dnl check for netloc library dnl X_AC_NETLOC @@ -563,7 +558,6 @@ AC_CONFIG_FILES([Makefile src/plugins/proctrack/cgroup/Makefile src/plugins/proctrack/pgid/Makefile src/plugins/proctrack/linuxproc/Makefile - src/plugins/proctrack/sgi_job/Makefile src/plugins/proctrack/lua/Makefile src/plugins/route/Makefile src/plugins/route/default/Makefile diff --git a/contribs/Makefile.in b/contribs/Makefile.in index 3251baeb1fcf64f806e3c887b1c853c76983e168..be5d39162a9172226e571fb1a9477c8fab240293 100644 --- a/contribs/Makefile.in +++ b/contribs/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/cray/Makefile.in b/contribs/cray/Makefile.in index 604e0ab37191d1341cb8463cb6db0d31d77832ee..cb775803563d08e72fa864370abac6837b830148 100644 --- a/contribs/cray/Makefile.in +++ b/contribs/cray/Makefile.in @@ -139,7 +139,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/cray/csm/Makefile.in b/contribs/cray/csm/Makefile.in index 8dde476f515ac160143836b856c87e57c9a8ee3a..e8bead696edad0c7f36aaedc15ac50bef042f5e2 100644 --- a/contribs/cray/csm/Makefile.in +++ b/contribs/cray/csm/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/cray/slurmsmwd/Makefile.in b/contribs/cray/slurmsmwd/Makefile.in index 6d0995f59ba0f58d9d87af0ba55851b650dd6aa0..7913c50ab1b4dd025ecb472086e3336562a1be23 100644 --- a/contribs/cray/slurmsmwd/Makefile.in +++ b/contribs/cray/slurmsmwd/Makefile.in @@ -137,7 +137,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/lua/Makefile.in b/contribs/lua/Makefile.in index b821fc14a413168c35821df7bcf3da797259b172..1338608f2866fa221077c6b8b5a5ad177774785d 100644 --- a/contribs/lua/Makefile.in +++ b/contribs/lua/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/mic/Makefile.in b/contribs/mic/Makefile.in index 11ca4b1e8fab7132215166457dcdc9277f53f883..1ea597b81f8eb21d25c2b60ffdb13b61d007114b 100644 --- a/contribs/mic/Makefile.in +++ b/contribs/mic/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/openlava/Makefile.in b/contribs/openlava/Makefile.in index 2ba046222007e0fab1927884be6a3909cdba9031..47b3b76298da9e8db65831d1c98531e0a2cf757e 100644 --- a/contribs/openlava/Makefile.in +++ b/contribs/openlava/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/pam/Makefile.in b/contribs/pam/Makefile.in index eba054f664bcd7a3810872720d49759cbac0352f..e89cc9016b05e11d555f2422e3682a10ec1b06e1 100644 --- a/contribs/pam/Makefile.in +++ b/contribs/pam/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/pam_slurm_adopt/Makefile.in b/contribs/pam_slurm_adopt/Makefile.in index 8cbd52c4d1c87b203a40cc1d4cf2b77d25b56641..94adb7a875aa63dab6552bf5d0b5728f5eaf4ffe 100644 --- a/contribs/pam_slurm_adopt/Makefile.in +++ b/contribs/pam_slurm_adopt/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/perlapi/Makefile.in b/contribs/perlapi/Makefile.in index d4c1e46c1c0930a6c83a354eb778b9c955a01c71..16e71584205b0d9039f68c6959f782f9696dee49 100644 --- a/contribs/perlapi/Makefile.in +++ b/contribs/perlapi/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/perlapi/libslurm/Makefile.in b/contribs/perlapi/libslurm/Makefile.in index 2a97e3d84bae71b01d7ae98fcaf2e07e9ffc7ee5..0e46fbe36841d34473d6bc7f34327e9ac80adc1c 100644 --- a/contribs/perlapi/libslurm/Makefile.in +++ b/contribs/perlapi/libslurm/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/perlapi/libslurmdb/Makefile.in b/contribs/perlapi/libslurmdb/Makefile.in index 2ce2e238366c4834630972c530e0bcd555e322ca..df85e8032e10a0b08c0726057ad320134c4a6da9 100644 --- a/contribs/perlapi/libslurmdb/Makefile.in +++ b/contribs/perlapi/libslurmdb/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/pmi/Makefile.in b/contribs/pmi/Makefile.in index a8ab122931a086d29a7b8e2b9c58f83a1d3da815..fbe23222b74b6c0467b4a3ebb659b801872db45c 100644 --- a/contribs/pmi/Makefile.in +++ b/contribs/pmi/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/pmi2/Makefile.in b/contribs/pmi2/Makefile.in index 8a397497714eb5457e650e5c5e4dd8e60d34701d..341a407b929849c9c4a8813fe60d6ec3eab5bb8e 100644 --- a/contribs/pmi2/Makefile.in +++ b/contribs/pmi2/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/seff/Makefile.in b/contribs/seff/Makefile.in index 3c09b9824a6512bd8bbbcda845c9ca59f8b4bfda..f8b20d03964e3fcccaa255141be8f8bf406b9eed 100644 --- a/contribs/seff/Makefile.in +++ b/contribs/seff/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/sgather/Makefile.in b/contribs/sgather/Makefile.in index ac2b1d52df0e4f9b1ae8dea3acb1ee47fa2f0a87..23ff2f24516cba714c4837dbe1f276a653a87850 100644 --- a/contribs/sgather/Makefile.in +++ b/contribs/sgather/Makefile.in @@ -131,7 +131,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/sgi/Makefile.in b/contribs/sgi/Makefile.in index e352dc784999acaa124be02de618e07bf96fff12..20ff7a6d61191fd8bdf58e66078e6f6fc0a36b82 100644 --- a/contribs/sgi/Makefile.in +++ b/contribs/sgi/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/sjobexit/Makefile.in b/contribs/sjobexit/Makefile.in index 7a9ed09617cf6d8db269df293e59d37662641cc0..ecb9bdf204e662bca4bf664a6a6d724c94b402e0 100644 --- a/contribs/sjobexit/Makefile.in +++ b/contribs/sjobexit/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/contribs/slurm.spec-legacy b/contribs/slurm.spec-legacy index 08fbe2a05c4da932a4765acfd62d666fff21d259..06be3e0e4f9faa69a67fbf792b34f0b855ef7a5f 100644 --- a/contribs/slurm.spec-legacy +++ b/contribs/slurm.spec-legacy @@ -45,7 +45,6 @@ Source: %{slurm_source_dir}.tar.bz2 # --without pam %_without_pam 1 don't require pam-devel RPM to be installed # --with percs %_with_percs 1 build percs RPM # --without readline %_without_readline 1 don't require readline-devel RPM to be installed -# --with sgijob %_with_sgijob 1 build proctrack-sgi-job RPM # # Allow defining --with and --without build options or %_with and %without in .rpmmacros # slurm_with builds option by default unless --without is specified @@ -89,7 +88,6 @@ Source: %{slurm_source_dir}.tar.bz2 %slurm_with_opt pam %endif -%slurm_without_opt sgijob %slurm_without_opt lua %slurm_without_opt partial-attach @@ -300,17 +298,6 @@ BuildRequires: nrt Slurm plugins to run on an IBM PERCS system, POE interface and NRT switch plugin %endif -%if %{slurm_with sgijob} -%package proctrack-sgi-job -Summary: Slurm process tracking plugin for SGI job containers -Group: System Environment/Base -Requires: slurm -BuildRequires: job -%description proctrack-sgi-job -Slurm process tracking plugin for SGI job containers -(See http://oss.sgi.com/projects/pagg) -%endif - %if %{slurm_with lua} %package lua Summary: Slurm lua bindings @@ -509,10 +496,6 @@ rm -f ${RPM_BUILD_ROOT}%{_libdir}/slurm/job_submit_lua.so rm -f ${RPM_BUILD_ROOT}%{_libdir}/slurm/proctrack_lua.so %endif -%if ! %{slurm_with sgijob} -rm -f ${RPM_BUILD_ROOT}%{_libdir}/slurm/proctrack_sgi_job.so -%endif - %if ! %{slurm_with percs} rm -f $RPM_BUILD_ROOT/%{_libdir}/slurm/launch_poe.so rm -f $RPM_BUILD_ROOT/%{_libdir}/slurm/libpermapi.so @@ -915,13 +898,6 @@ rm -rf $RPM_BUILD_ROOT %endif ############################################################################# -%if %{slurm_with sgijob} -%files proctrack-sgi-job -%defattr(-,root,root) -%{_libdir}/slurm/proctrack_sgi_job.so -%endif -############################################################################# - %if %{slurm_with lua} %files lua %defattr(-,root,root) diff --git a/contribs/torque/Makefile.in b/contribs/torque/Makefile.in index 93838369396073f90d8edd04416fd3c230aec03f..0014af47071d7720e29c4957b1aa0a1d80f2a9e8 100644 --- a/contribs/torque/Makefile.in +++ b/contribs/torque/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/doc/Makefile.in b/doc/Makefile.in index 223338169ce9da0e685265ef7a635a85fc483fdb..2072484c4992f34d4dbff39ea2a9980721feb136 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/doc/html/Makefile.in b/doc/html/Makefile.in index d41d36b76e4da7a21d25f4e961affc7a05056fe6..3d8acde86d72e2e4f5b27af4cfa5316bfc6d44b0 100644 --- a/doc/html/Makefile.in +++ b/doc/html/Makefile.in @@ -131,7 +131,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/doc/man/Makefile.in b/doc/man/Makefile.in index 2d74c0bb995778889e37fdd282c69256bc0bf6d2..2c79d265e46721f2fae7e7298296c75a7de8d1f4 100644 --- a/doc/man/Makefile.in +++ b/doc/man/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/doc/man/man1/Makefile.in b/doc/man/man1/Makefile.in index f011436a6cf6d127a8a17a2ec5f2488f64653561..b68f032568999fb6fcbc074963d824e77b47aba0 100644 --- a/doc/man/man1/Makefile.in +++ b/doc/man/man1/Makefile.in @@ -138,7 +138,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/doc/man/man3/Makefile.in b/doc/man/man3/Makefile.in index bbdc16cbe80196e17f291052ae8b2e31359eb550..8b29c4d45ae659038f04912cc6e6958d59c2e9a5 100644 --- a/doc/man/man3/Makefile.in +++ b/doc/man/man3/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/doc/man/man5/Makefile.in b/doc/man/man5/Makefile.in index 6154b36908cddbe2bb6a20756180c739409de984..b2aa21e11368eaaa08ce6dc6ac67a26a855e7720 100644 --- a/doc/man/man5/Makefile.in +++ b/doc/man/man5/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/doc/man/man5/slurm.conf.5 b/doc/man/man5/slurm.conf.5 index c9a82ee4f49ff4864e7faf7b6f9472f9b287c54e..6d948125cb6d6d56b27ea7d69298d7685a9fbba7 100644 --- a/doc/man/man5/slurm.conf.5 +++ b/doc/man/man5/slurm.conf.5 @@ -2052,10 +2052,6 @@ which uses linux process tree using parent process IDs \fBproctrack/lua\fR which uses a site\-specific LUA script to track processes .TP -\fBproctrack/sgi_job\fR -which uses SGI's Process Aggregates (PAGG) kernel module, -see \fIhttp://oss.sgi.com/projects/pagg/\fR for more information -.TP \fBproctrack/pgid\fR which uses process group IDs .RE diff --git a/doc/man/man8/Makefile.in b/doc/man/man8/Makefile.in index 0063c751e8c4b7184ec1f71224d9e7879d55f02f..2f4f5b04cc22467a825bde27f72d6aced697cead 100644 --- a/doc/man/man8/Makefile.in +++ b/doc/man/man8/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/etc/Makefile.in b/etc/Makefile.in index aa8763113e033946a70f75119ce7da0d656363e7..44811e9c537d38ea4a9566ab9803a8fee287f1ca 100644 --- a/etc/Makefile.in +++ b/etc/Makefile.in @@ -131,7 +131,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/Makefile.in b/src/Makefile.in index b95e9b0f86fd8c689f22e398ff5977395315d8d8..ceb4c676663c95159a70341ac39c66a119bee4eb 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/api/Makefile.in b/src/api/Makefile.in index 6dfb0090a61760463d3daa110337d4e608b5f764..b8b9daee814b48070ba14d785dbf23e966c04995 100644 --- a/src/api/Makefile.in +++ b/src/api/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/bcast/Makefile.in b/src/bcast/Makefile.in index dd296534341dac940b88b96a7c061f0b01babf82..3f5a0149468a9ca13deb96660f05af7aa2aaebd4 100644 --- a/src/bcast/Makefile.in +++ b/src/bcast/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/common/Makefile.in b/src/common/Makefile.in index bf75af18115afe6551b8c259bde4a40ee0c98949..ecf9d7a33682e81d69a680839e52523025065e60 100644 --- a/src/common/Makefile.in +++ b/src/common/Makefile.in @@ -144,7 +144,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/common/read_config.c b/src/common/read_config.c index 14221e467aaaeb6ea84de86362e0050938b11bc6..c82052531df401b7111b942a867740aac78d00be 100644 --- a/src/common/read_config.c +++ b/src/common/read_config.c @@ -4369,13 +4369,6 @@ _validate_and_set_defaults(slurm_ctl_conf_t *conf, s_p_hashtbl_t *hashtbl) "is required"); return SLURM_ERROR; } -#else -#ifdef HAVE_REAL_CRAY - if (xstrcmp(conf->proctrack_type, "proctrack/sgi_job")) { - error("On Cray ProctrackType=proctrack/sgi_job is required"); - return SLURM_ERROR; - } -#endif #endif conf->private_data = 0; /* Set to default before parsing PrivateData */ diff --git a/src/database/Makefile.in b/src/database/Makefile.in index b43cdee021fa826549e06dcb85d8d03ebe79c04a..480f953aea207a66fc3b1d3bbcbca380a5d2ffd9 100644 --- a/src/database/Makefile.in +++ b/src/database/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/db_api/Makefile.in b/src/db_api/Makefile.in index 81f6980000c01d3832906eafb126237808f94551..bed34ade48e0cf5d581c0a768a2ecbefdd7a5dfb 100644 --- a/src/db_api/Makefile.in +++ b/src/db_api/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/layouts/Makefile.in b/src/layouts/Makefile.in index 75de2cd997ee4ac5adffbfa83883665682720bf3..5a9e7ba6f0a6549a59bc102139d6f380801aacc3 100644 --- a/src/layouts/Makefile.in +++ b/src/layouts/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/layouts/power/Makefile.in b/src/layouts/power/Makefile.in index c825dcba659620c0f58b5e201424b248def9c874..43970ef9d2e687697c62c12d9d699ffef5b9f758 100644 --- a/src/layouts/power/Makefile.in +++ b/src/layouts/power/Makefile.in @@ -131,7 +131,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/layouts/unit/Makefile.in b/src/layouts/unit/Makefile.in index 9c84d6e1ad7157de1e44ad747a0a737cc5bcced8..9db57d030c07487726fefdd849ac49ba7ac2c63f 100644 --- a/src/layouts/unit/Makefile.in +++ b/src/layouts/unit/Makefile.in @@ -131,7 +131,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/Makefile.in b/src/plugins/Makefile.in index 81aeaae4a7b5dc8169844f052a5916f84ceb6467..fe4f34b4094b60c4e82a589c4e64d020a2b9cdb5 100644 --- a/src/plugins/Makefile.in +++ b/src/plugins/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/accounting_storage/Makefile.in b/src/plugins/accounting_storage/Makefile.in index 2f2eec7d8dc8bcf69b59862b1dc035aebde2166e..4b443d57c49e2e84fd811228b6d2b21fc6d31d24 100644 --- a/src/plugins/accounting_storage/Makefile.in +++ b/src/plugins/accounting_storage/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/accounting_storage/common/Makefile.in b/src/plugins/accounting_storage/common/Makefile.in index 5529f569ce5edb72544ebfa9584c91a79614b9b0..e3498f049133f944e4df3e031956d3ad71b6655d 100644 --- a/src/plugins/accounting_storage/common/Makefile.in +++ b/src/plugins/accounting_storage/common/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/accounting_storage/filetxt/Makefile.in b/src/plugins/accounting_storage/filetxt/Makefile.in index 9a14a1a4a91b043c5ff22246fdf831f7664fe27c..e68ccccada4266bc4591932cf39b7e821d05d1d8 100644 --- a/src/plugins/accounting_storage/filetxt/Makefile.in +++ b/src/plugins/accounting_storage/filetxt/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/accounting_storage/mysql/Makefile.in b/src/plugins/accounting_storage/mysql/Makefile.in index 0323b1946b58c12a9b7398265432222c5ce98b5d..82aaedbe13f8516a8c8b54ef6bb1822d1f281f60 100644 --- a/src/plugins/accounting_storage/mysql/Makefile.in +++ b/src/plugins/accounting_storage/mysql/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/accounting_storage/none/Makefile.in b/src/plugins/accounting_storage/none/Makefile.in index bbb3cd65bb8104db81f28db43da3f9a03b94d953..e11d66a090bfdf78ebc7da78eaa6e01aa5015d97 100644 --- a/src/plugins/accounting_storage/none/Makefile.in +++ b/src/plugins/accounting_storage/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/accounting_storage/slurmdbd/Makefile.in b/src/plugins/accounting_storage/slurmdbd/Makefile.in index c3bd2c7f62c77b092623eba6c6410d647eb58ae1..61bb3b108878fc5f4b5b0a6d91f8e722c95f1673 100644 --- a/src/plugins/accounting_storage/slurmdbd/Makefile.in +++ b/src/plugins/accounting_storage/slurmdbd/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_energy/Makefile.in b/src/plugins/acct_gather_energy/Makefile.in index 3ca15493a542fe9981d500dd55689e1a6ed10191..695c5a02a62a39f07b0a652eefd543f631e013b2 100644 --- a/src/plugins/acct_gather_energy/Makefile.in +++ b/src/plugins/acct_gather_energy/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_energy/cray/Makefile.in b/src/plugins/acct_gather_energy/cray/Makefile.in index 12092cf4c512d626a5d9a22684b0cb362d8284d2..502728020264cf5412eb216a477899951bbf4461 100644 --- a/src/plugins/acct_gather_energy/cray/Makefile.in +++ b/src/plugins/acct_gather_energy/cray/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_energy/ibmaem/Makefile.in b/src/plugins/acct_gather_energy/ibmaem/Makefile.in index b620fd8353ae85ebedc6e6aa7fd4b3d781008e25..4456a3df969028034f5edc6a559c5859534d0eee 100644 --- a/src/plugins/acct_gather_energy/ibmaem/Makefile.in +++ b/src/plugins/acct_gather_energy/ibmaem/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_energy/ipmi/Makefile.in b/src/plugins/acct_gather_energy/ipmi/Makefile.in index c54a2dd66b2e9ada7c00b9b49a0da7068cd187e3..647b032e377064b7d88dee9c035a8c1936a81a03 100644 --- a/src/plugins/acct_gather_energy/ipmi/Makefile.in +++ b/src/plugins/acct_gather_energy/ipmi/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_energy/none/Makefile.in b/src/plugins/acct_gather_energy/none/Makefile.in index b3fb2c5f02ae01798dc79d5fc6322e1bef01c3f5..95f9cfcb2e5c191f1762f3cbc952f0ecee381bcf 100644 --- a/src/plugins/acct_gather_energy/none/Makefile.in +++ b/src/plugins/acct_gather_energy/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_energy/rapl/Makefile.in b/src/plugins/acct_gather_energy/rapl/Makefile.in index 45f4ce5efd21b39aa28e43eb9f2c351fbcc37607..38beecc62abc0794f8381a7359f20cef784cc556 100644 --- a/src/plugins/acct_gather_energy/rapl/Makefile.in +++ b/src/plugins/acct_gather_energy/rapl/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_filesystem/Makefile.in b/src/plugins/acct_gather_filesystem/Makefile.in index 42a1ed3872ecf0c23d6f6b992ae491bc485eaeb4..bce785446ee97bbf1357f0bb1081cb7fce60cb5a 100644 --- a/src/plugins/acct_gather_filesystem/Makefile.in +++ b/src/plugins/acct_gather_filesystem/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_filesystem/lustre/Makefile.in b/src/plugins/acct_gather_filesystem/lustre/Makefile.in index e28850fca811a5d222f7853e1168a2604d9d6eae..bb4be74edd9da3040549dd2e92acc169bda33a43 100644 --- a/src/plugins/acct_gather_filesystem/lustre/Makefile.in +++ b/src/plugins/acct_gather_filesystem/lustre/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_filesystem/none/Makefile.in b/src/plugins/acct_gather_filesystem/none/Makefile.in index 9df144d1e1eca14fb3358b2f8173200db32dcc57..0d75f16afa996104d73b1821da7bb5414f09d45b 100644 --- a/src/plugins/acct_gather_filesystem/none/Makefile.in +++ b/src/plugins/acct_gather_filesystem/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_interconnect/Makefile.in b/src/plugins/acct_gather_interconnect/Makefile.in index 71cd82c4fc939e66903638e4eaff27ef42a2b94b..b299a34a85b0171f76f1023abaaeaf9f1341982e 100644 --- a/src/plugins/acct_gather_interconnect/Makefile.in +++ b/src/plugins/acct_gather_interconnect/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_interconnect/none/Makefile.in b/src/plugins/acct_gather_interconnect/none/Makefile.in index 740a19a17c7f87ab9b9b141e56aa1e0f68a82af7..e593bc682de10dde902212bdbe73a34983397e64 100644 --- a/src/plugins/acct_gather_interconnect/none/Makefile.in +++ b/src/plugins/acct_gather_interconnect/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_interconnect/ofed/Makefile.in b/src/plugins/acct_gather_interconnect/ofed/Makefile.in index 460dcf53b7c3dbc0b2748f24250b9b26cfa1a9de..cc9c589f67464b2704e3cac1c0420ad7f22e34be 100644 --- a/src/plugins/acct_gather_interconnect/ofed/Makefile.in +++ b/src/plugins/acct_gather_interconnect/ofed/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_profile/Makefile.in b/src/plugins/acct_gather_profile/Makefile.in index 02b0f2d842be14d9a12b38d2a6ab4392c4c27035..ce088878e0860cc787fa4c6c636715833ee76901 100644 --- a/src/plugins/acct_gather_profile/Makefile.in +++ b/src/plugins/acct_gather_profile/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_profile/hdf5/Makefile.in b/src/plugins/acct_gather_profile/hdf5/Makefile.in index 73a22ff0cc02e217971f847ff8d2c829501ae5e3..e1aba2778c6a39f2a92f40995719a72b7695f111 100644 --- a/src/plugins/acct_gather_profile/hdf5/Makefile.in +++ b/src/plugins/acct_gather_profile/hdf5/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_profile/hdf5/sh5util/Makefile.in b/src/plugins/acct_gather_profile/hdf5/sh5util/Makefile.in index 448013e413bafbd588a06d3e42f836963754b0df..b8f8d5ddd186d1c02f3a19045711790e22a024b1 100644 --- a/src/plugins/acct_gather_profile/hdf5/sh5util/Makefile.in +++ b/src/plugins/acct_gather_profile/hdf5/sh5util/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_profile/influxdb/Makefile.in b/src/plugins/acct_gather_profile/influxdb/Makefile.in index 7e0cd3841eba88370d5388c78ab15c6d55540e95..2b86dcc66c9a441393b64530fd3f4299a9e1891b 100644 --- a/src/plugins/acct_gather_profile/influxdb/Makefile.in +++ b/src/plugins/acct_gather_profile/influxdb/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/acct_gather_profile/none/Makefile.in b/src/plugins/acct_gather_profile/none/Makefile.in index 4e7d1be5ad049276e66555fc730e25238a552116..aa599c8ed99d975aed03f674b687aa23dac4f753 100644 --- a/src/plugins/acct_gather_profile/none/Makefile.in +++ b/src/plugins/acct_gather_profile/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/auth/Makefile.in b/src/plugins/auth/Makefile.in index 33c92ec8e412fd94c8683c4bafb6e34d54857800..8c225ee8c3290caf4d8f4ecb493e028f595147ed 100644 --- a/src/plugins/auth/Makefile.in +++ b/src/plugins/auth/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/auth/munge/Makefile.in b/src/plugins/auth/munge/Makefile.in index f113c04ce5374e95ff3c6e83c94eebcff1605c8e..a9d99b6888c98378587012e54c663625ee2221ef 100644 --- a/src/plugins/auth/munge/Makefile.in +++ b/src/plugins/auth/munge/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/auth/none/Makefile.in b/src/plugins/auth/none/Makefile.in index 727bac113bfd2d203985344b0d067f6433513aeb..8ddd2c8f70851bf5701f01167207bd6da2f98fe3 100644 --- a/src/plugins/auth/none/Makefile.in +++ b/src/plugins/auth/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/burst_buffer/Makefile.in b/src/plugins/burst_buffer/Makefile.in index 569004c5b82d53017bfd00f09f990c10fa02fbb0..2ea3c538d8746caa1b844193e5f25ca62227b413 100644 --- a/src/plugins/burst_buffer/Makefile.in +++ b/src/plugins/burst_buffer/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/burst_buffer/common/Makefile.in b/src/plugins/burst_buffer/common/Makefile.in index 7417239e738230c6774be43b55ef5d2ab121dd92..92fcfc9e7c5262b37a283e76e6ad5b2778c80ff2 100644 --- a/src/plugins/burst_buffer/common/Makefile.in +++ b/src/plugins/burst_buffer/common/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/burst_buffer/cray/Makefile.in b/src/plugins/burst_buffer/cray/Makefile.in index ec2167c92a028d6b0d902bf3d59852a913d1ae79..8cce798daca534a5ea69903ccb638ae8f27f808b 100644 --- a/src/plugins/burst_buffer/cray/Makefile.in +++ b/src/plugins/burst_buffer/cray/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/burst_buffer/generic/Makefile.in b/src/plugins/burst_buffer/generic/Makefile.in index 360b158cc3be9ae13a5efd79bb0599fd376c256a..de6164e9815e0f8fdcf37a54c7ad7882bcf9a3ff 100644 --- a/src/plugins/burst_buffer/generic/Makefile.in +++ b/src/plugins/burst_buffer/generic/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/checkpoint/Makefile.in b/src/plugins/checkpoint/Makefile.in index 773f510a2864ee5d1582b7a34ec516a90df3676c..04f9d0eb8cae81dcb917d59f8a779a1a3495052f 100644 --- a/src/plugins/checkpoint/Makefile.in +++ b/src/plugins/checkpoint/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/checkpoint/blcr/Makefile.in b/src/plugins/checkpoint/blcr/Makefile.in index 1fd6be6eddb1e4836178bdca95ff1bdd5eee840b..6b0bf0ba237049900782e30fa71c2d307d7c2c5d 100644 --- a/src/plugins/checkpoint/blcr/Makefile.in +++ b/src/plugins/checkpoint/blcr/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/checkpoint/none/Makefile.in b/src/plugins/checkpoint/none/Makefile.in index cc25b68903501451f82b692644d85ae013ab6a5d..194df1b1073017b0e477f4e748bec03e0112bf0c 100644 --- a/src/plugins/checkpoint/none/Makefile.in +++ b/src/plugins/checkpoint/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/checkpoint/ompi/Makefile.in b/src/plugins/checkpoint/ompi/Makefile.in index 2d0b390cbd9c95ae0e6dce1fed0ea26fa2031b6f..19c5e84233fdb51eeeb6a45e6cbb669ed43e3bc9 100644 --- a/src/plugins/checkpoint/ompi/Makefile.in +++ b/src/plugins/checkpoint/ompi/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/core_spec/Makefile.in b/src/plugins/core_spec/Makefile.in index 2bb099a488b2f4323165232b85f7b4c7948194e7..49aa1679a029824268038d4f2a638c66f10f14d2 100644 --- a/src/plugins/core_spec/Makefile.in +++ b/src/plugins/core_spec/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/core_spec/cray/Makefile.in b/src/plugins/core_spec/cray/Makefile.in index f93470e09b59b7d31d15b28dc8679d71ee1e56aa..4bddfb745921c61786e275ad5647d68b8e0ae6d2 100644 --- a/src/plugins/core_spec/cray/Makefile.in +++ b/src/plugins/core_spec/cray/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/core_spec/none/Makefile.in b/src/plugins/core_spec/none/Makefile.in index c90119803b30fe1ffcabfc4ba3ed5ed236072fbf..72add68af3942791a3b71f1efaefd6cd9eedb910 100644 --- a/src/plugins/core_spec/none/Makefile.in +++ b/src/plugins/core_spec/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/crypto/Makefile.in b/src/plugins/crypto/Makefile.in index 8f3678c4593ef5a72167204e7b48a23f5f948ead..d3947bb2c86a38f03b5d29b93a1b187cf3680f64 100644 --- a/src/plugins/crypto/Makefile.in +++ b/src/plugins/crypto/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/crypto/munge/Makefile.in b/src/plugins/crypto/munge/Makefile.in index aa20a760f6ea542b7f48e3d50e881c2d220be403..8aea909e91ed8e0f7d888057ca1ccb0777bbc897 100644 --- a/src/plugins/crypto/munge/Makefile.in +++ b/src/plugins/crypto/munge/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/crypto/openssl/Makefile.in b/src/plugins/crypto/openssl/Makefile.in index 97ffc49e2271918b0c6e0b7389aff199a1fbf721..00270d025af7d56a3761c751ae0c86ce9c202bea 100644 --- a/src/plugins/crypto/openssl/Makefile.in +++ b/src/plugins/crypto/openssl/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/ext_sensors/Makefile.in b/src/plugins/ext_sensors/Makefile.in index cb0988dc571144b450487d0a012edd9564040bf9..cf3460e78b2da3ec13f4470bd7a76fc965421731 100644 --- a/src/plugins/ext_sensors/Makefile.in +++ b/src/plugins/ext_sensors/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/ext_sensors/none/Makefile.in b/src/plugins/ext_sensors/none/Makefile.in index 1f07b66e761497a870bc7b5a072bfdf82bfecc7e..ce52c8b687c89394e77d4252024fc55386b3cf78 100644 --- a/src/plugins/ext_sensors/none/Makefile.in +++ b/src/plugins/ext_sensors/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/ext_sensors/rrd/Makefile.in b/src/plugins/ext_sensors/rrd/Makefile.in index 1a61556bb026f4e162719e4ff45210db826a880b..ed9383019f35a39ce9bcdc300c963de9a246227e 100644 --- a/src/plugins/ext_sensors/rrd/Makefile.in +++ b/src/plugins/ext_sensors/rrd/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/gres/Makefile.in b/src/plugins/gres/Makefile.in index afe272933e41c13b2d1f235f00eecbedad013819..089e901b0d26442dd468794c46dead966861a02e 100644 --- a/src/plugins/gres/Makefile.in +++ b/src/plugins/gres/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/gres/common/Makefile.in b/src/plugins/gres/common/Makefile.in index 7b514257b0889157b802c42b9627efaffd92f020..dda7cf56e9c626e0e376b4d01a550ce82f99396e 100644 --- a/src/plugins/gres/common/Makefile.in +++ b/src/plugins/gres/common/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/gres/gpu/Makefile.in b/src/plugins/gres/gpu/Makefile.in index 88b36c96fd085f21bee5712bd1512dd50a24273a..aa4bec2daaec1bf246445d1efdab69201f8ce611 100644 --- a/src/plugins/gres/gpu/Makefile.in +++ b/src/plugins/gres/gpu/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/gres/mic/Makefile.in b/src/plugins/gres/mic/Makefile.in index 83f4587d78bfcad539a8ac52b2c98b57c05c8fba..493a56e55a93a12d728c2c2d7cdc73113e86b287 100644 --- a/src/plugins/gres/mic/Makefile.in +++ b/src/plugins/gres/mic/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/gres/nic/Makefile.in b/src/plugins/gres/nic/Makefile.in index cb59f3baf41de484beb2f945a88295c12e188482..bbdaec658121dfa9d3d86f1b9b84d4d8a4e92ae0 100644 --- a/src/plugins/gres/nic/Makefile.in +++ b/src/plugins/gres/nic/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_container/Makefile.in b/src/plugins/job_container/Makefile.in index 3ade262e686b193b7eff328147b19bb44b3db4da..713110ce3508d235a66b07da8776f28e9426e40f 100644 --- a/src/plugins/job_container/Makefile.in +++ b/src/plugins/job_container/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_container/cncu/Makefile.in b/src/plugins/job_container/cncu/Makefile.in index cb4229f14e78a7d80472c609cb6f1edb55f40b5d..fefd75ddc42a204123be0d0a2379d118763c71c0 100644 --- a/src/plugins/job_container/cncu/Makefile.in +++ b/src/plugins/job_container/cncu/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_container/none/Makefile.in b/src/plugins/job_container/none/Makefile.in index 957a126aff0df381e8114b53d84048e910686ca3..1546f3c05dfc5013949047bb00fb2dd7d77b9838 100644 --- a/src/plugins/job_container/none/Makefile.in +++ b/src/plugins/job_container/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_submit/Makefile.in b/src/plugins/job_submit/Makefile.in index b9ee79efb0f7f9d216cc44a13f613c486d2b5179..f03c8427a036254166405a2aa3001e3044e64564 100644 --- a/src/plugins/job_submit/Makefile.in +++ b/src/plugins/job_submit/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_submit/all_partitions/Makefile.in b/src/plugins/job_submit/all_partitions/Makefile.in index be37a5321b63bfec3541f3c65f45ed86b9fd60fa..67aabff6cdf57c081ba5a45cde84a1374a8b73b2 100644 --- a/src/plugins/job_submit/all_partitions/Makefile.in +++ b/src/plugins/job_submit/all_partitions/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_submit/cray/Makefile.in b/src/plugins/job_submit/cray/Makefile.in index 1c2f02c46797fa8563e0bd335357a7dd38eba721..6f560b62e017fd7c34fbd8195c41503c2dcfc53e 100644 --- a/src/plugins/job_submit/cray/Makefile.in +++ b/src/plugins/job_submit/cray/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_submit/defaults/Makefile.in b/src/plugins/job_submit/defaults/Makefile.in index a0a2f7001aac04d9627e2bcf1fdf5e28f7932b83..8572f0ad372d1185ee1930e0e06d03cb7f75e106 100644 --- a/src/plugins/job_submit/defaults/Makefile.in +++ b/src/plugins/job_submit/defaults/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_submit/logging/Makefile.in b/src/plugins/job_submit/logging/Makefile.in index 9ecb0f0cf2853d852c6def2f446ee6d8a5f66061..3c9cfd507d5a8a5023810bf2dddeee0514fe9b3f 100644 --- a/src/plugins/job_submit/logging/Makefile.in +++ b/src/plugins/job_submit/logging/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_submit/lua/Makefile.in b/src/plugins/job_submit/lua/Makefile.in index cae3fbc69f53e8625eba1f2feb86db5f4484518f..17d56ec3079f77b6e38e24cdd5296a4536710bda 100644 --- a/src/plugins/job_submit/lua/Makefile.in +++ b/src/plugins/job_submit/lua/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_submit/partition/Makefile.in b/src/plugins/job_submit/partition/Makefile.in index cadfe7362fa048967e1304b15fe70ec99ef7ceda..9a8c6ed9a15493da00b2c08b1c5e87a7185c7d25 100644 --- a/src/plugins/job_submit/partition/Makefile.in +++ b/src/plugins/job_submit/partition/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_submit/pbs/Makefile.in b/src/plugins/job_submit/pbs/Makefile.in index 2c3631e38c2278b41742d4e24c894dadb4a420da..f6554ae7911cc5c8b80edb49e569f8464b42e215 100644 --- a/src/plugins/job_submit/pbs/Makefile.in +++ b/src/plugins/job_submit/pbs/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_submit/require_timelimit/Makefile.in b/src/plugins/job_submit/require_timelimit/Makefile.in index a6b29db7cb696073caf6c8f04a03312ce82f97dc..010d949a07b31337ae8cab73864f2793723287a2 100644 --- a/src/plugins/job_submit/require_timelimit/Makefile.in +++ b/src/plugins/job_submit/require_timelimit/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/job_submit/throttle/Makefile.in b/src/plugins/job_submit/throttle/Makefile.in index 534e8bc29eb20b0c82f5f14c017576a703836815..1ee8b15f42f9e95910f8f89f7e37d846323a9eef 100644 --- a/src/plugins/job_submit/throttle/Makefile.in +++ b/src/plugins/job_submit/throttle/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobacct_gather/Makefile.in b/src/plugins/jobacct_gather/Makefile.in index 78394860ad8bf02f9a69c2000c50971366ca1e90..8be09b6952b330832432767ca7659a49074de320 100644 --- a/src/plugins/jobacct_gather/Makefile.in +++ b/src/plugins/jobacct_gather/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobacct_gather/cgroup/Makefile.in b/src/plugins/jobacct_gather/cgroup/Makefile.in index 39afc18b4d453fc3552d1e57061d88e2c12ce1e8..44b8ee1d80c6db3810433fd70140b59603559759 100644 --- a/src/plugins/jobacct_gather/cgroup/Makefile.in +++ b/src/plugins/jobacct_gather/cgroup/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobacct_gather/common/Makefile.in b/src/plugins/jobacct_gather/common/Makefile.in index 4ba7ca67f4fb6583796f683f333bd3e1fc6070c5..ba51a34e55bb856df1c5584d7e7620edf5893abe 100644 --- a/src/plugins/jobacct_gather/common/Makefile.in +++ b/src/plugins/jobacct_gather/common/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobacct_gather/linux/Makefile.in b/src/plugins/jobacct_gather/linux/Makefile.in index 12af385152a55ba6b572f9d49c320f3380e72309..cc5253134cf5d56bcbf9bfc942dbe532bc9921dc 100644 --- a/src/plugins/jobacct_gather/linux/Makefile.in +++ b/src/plugins/jobacct_gather/linux/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobacct_gather/none/Makefile.in b/src/plugins/jobacct_gather/none/Makefile.in index adce285905e33714fb00cb258440aff85a84c55a..9f6795cd9a16c212f0bd20a0918f1b003796ba53 100644 --- a/src/plugins/jobacct_gather/none/Makefile.in +++ b/src/plugins/jobacct_gather/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobcomp/Makefile.in b/src/plugins/jobcomp/Makefile.in index 26f714ad43b2922191e0d3c5ee5c7b3760cebee3..6c6c1cfc46ee5843d48f122a82623aeedacd99d9 100644 --- a/src/plugins/jobcomp/Makefile.in +++ b/src/plugins/jobcomp/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobcomp/elasticsearch/Makefile.in b/src/plugins/jobcomp/elasticsearch/Makefile.in index b089ca03fd7fec81bf83ecad06772d55fe374dcf..fa6583451b25f55c970776e89cb6a751abc57626 100644 --- a/src/plugins/jobcomp/elasticsearch/Makefile.in +++ b/src/plugins/jobcomp/elasticsearch/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobcomp/filetxt/Makefile.in b/src/plugins/jobcomp/filetxt/Makefile.in index 0ef992978564f524173d191b650f29311bad9618..63445402b341299d789888d66b6f341fd9b2e21f 100644 --- a/src/plugins/jobcomp/filetxt/Makefile.in +++ b/src/plugins/jobcomp/filetxt/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobcomp/mysql/Makefile.in b/src/plugins/jobcomp/mysql/Makefile.in index 9ecfb0eeb8700208612846b571fcfdf344ec8a6d..c565514cd39166235c677e2509bda406cf4862b7 100644 --- a/src/plugins/jobcomp/mysql/Makefile.in +++ b/src/plugins/jobcomp/mysql/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobcomp/none/Makefile.in b/src/plugins/jobcomp/none/Makefile.in index a94974a8eac5db314e6161220c37f08b0e940f95..ff9eb17ab3a331d8241ca03ed4381460b8158868 100644 --- a/src/plugins/jobcomp/none/Makefile.in +++ b/src/plugins/jobcomp/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/jobcomp/script/Makefile.in b/src/plugins/jobcomp/script/Makefile.in index ba2ce99b4110cfca016896025833baa5a461d979..d2f794044aef1e58d667fd2e83928356a416d380 100644 --- a/src/plugins/jobcomp/script/Makefile.in +++ b/src/plugins/jobcomp/script/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/launch/Makefile.in b/src/plugins/launch/Makefile.in index 8ec9e3e2f0a436d6d50142e18a6bb88db42ff759..5fc980f9a7795b4928be7e4c57af3dbeda44d43a 100644 --- a/src/plugins/launch/Makefile.in +++ b/src/plugins/launch/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/launch/poe/Makefile.in b/src/plugins/launch/poe/Makefile.in index 0b1abdd9a0dc1600e7510e71587d8274103b0501..20634d0c40c3e026b675e583ea9f4942feb2cbcd 100644 --- a/src/plugins/launch/poe/Makefile.in +++ b/src/plugins/launch/poe/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/launch/slurm/Makefile.in b/src/plugins/launch/slurm/Makefile.in index ac76a34545ccbcea133669d460e1255cb3dd0e83..2184f634c42bb010747b599835ddb2438f12d52f 100644 --- a/src/plugins/launch/slurm/Makefile.in +++ b/src/plugins/launch/slurm/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/mcs/Makefile.in b/src/plugins/mcs/Makefile.in index 327ddc95730b6bf3f04aa56c645efb8b3cd4627a..e7600f680689fb98bc49729db5efe2a7dc45493a 100644 --- a/src/plugins/mcs/Makefile.in +++ b/src/plugins/mcs/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/mcs/account/Makefile.in b/src/plugins/mcs/account/Makefile.in index bf99d802ac0b8178395cea0344fba33c43bfa67a..679149008eb7ee91c8a02c2e8fd72e887057a62a 100644 --- a/src/plugins/mcs/account/Makefile.in +++ b/src/plugins/mcs/account/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/mcs/group/Makefile.in b/src/plugins/mcs/group/Makefile.in index 5ef2491190d93e9390186a4d750ae944c71d8c14..9b5d5133dfc3f6e05d8ee00aa1c74204d1317481 100644 --- a/src/plugins/mcs/group/Makefile.in +++ b/src/plugins/mcs/group/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/mcs/none/Makefile.in b/src/plugins/mcs/none/Makefile.in index b841551c43d115ecec4568e6d7d198d02a42e1d6..5943725a16e2a71ba3212afb1a833dc05ddb66e1 100644 --- a/src/plugins/mcs/none/Makefile.in +++ b/src/plugins/mcs/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/mcs/user/Makefile.in b/src/plugins/mcs/user/Makefile.in index c83c71b13fa981a872845eac15214956c1b1950b..22e111d79312f681df5e197ea5f6360f9786016a 100644 --- a/src/plugins/mcs/user/Makefile.in +++ b/src/plugins/mcs/user/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/mpi/Makefile.in b/src/plugins/mpi/Makefile.in index 9146f045917c90153984c234c2ecc495413a30ab..6d0f847c0a6be5c05c48de5281cb606413012994 100644 --- a/src/plugins/mpi/Makefile.in +++ b/src/plugins/mpi/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/mpi/none/Makefile.in b/src/plugins/mpi/none/Makefile.in index 62144924e3039618be295dd636786335f6424957..9bfd2f17316c62d77f79f54f4dff281bc54966c8 100644 --- a/src/plugins/mpi/none/Makefile.in +++ b/src/plugins/mpi/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/mpi/openmpi/Makefile.in b/src/plugins/mpi/openmpi/Makefile.in index 0640593007cb7cc3815220687ccbb954fbd06590..f9d4c15e18ebf3de27d48c34bbba40661feba191 100644 --- a/src/plugins/mpi/openmpi/Makefile.in +++ b/src/plugins/mpi/openmpi/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/mpi/pmi2/Makefile.in b/src/plugins/mpi/pmi2/Makefile.in index 7932ab517102cb583ea9f78245361cf62cc99fca..603971c867e2aa359734bb4bc170dd14cb47aeb2 100644 --- a/src/plugins/mpi/pmi2/Makefile.in +++ b/src/plugins/mpi/pmi2/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/mpi/pmix/Makefile.in b/src/plugins/mpi/pmix/Makefile.in index 0656ea340d7b76bbdfc279369f5548996c617da6..96502fbbfb1e7db8677fad09f76e8ae5f9b4e310 100644 --- a/src/plugins/mpi/pmix/Makefile.in +++ b/src/plugins/mpi/pmix/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/node_features/Makefile.in b/src/plugins/node_features/Makefile.in index c82533d85fd5c68dd0530cd8497dc6ff786c5ca2..edb5aea72ebb090bf0eb7089fdb15b4c35efea22 100644 --- a/src/plugins/node_features/Makefile.in +++ b/src/plugins/node_features/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/node_features/knl_cray/Makefile.in b/src/plugins/node_features/knl_cray/Makefile.in index 974bf476122f2016cb7daf5bb292c93ac4e287e5..bed13f3b4721d87299e7fa9b340e062d39cf2528 100644 --- a/src/plugins/node_features/knl_cray/Makefile.in +++ b/src/plugins/node_features/knl_cray/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/node_features/knl_generic/Makefile.in b/src/plugins/node_features/knl_generic/Makefile.in index 74ce86ffb342cdd35b53fca45e5f3baa56965b64..6719de0ba5d869fde112993569f4da9ada4dbdbf 100644 --- a/src/plugins/node_features/knl_generic/Makefile.in +++ b/src/plugins/node_features/knl_generic/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/power/Makefile.in b/src/plugins/power/Makefile.in index c9b24873b08ec186360a7445b8f485bfbe816d3d..06e67bac04ab144a32711afe0c26604ed0be8689 100644 --- a/src/plugins/power/Makefile.in +++ b/src/plugins/power/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/power/common/Makefile.in b/src/plugins/power/common/Makefile.in index a00769b452b5954d84112e09638fbc97cef433de..103cb79bd5ee955b8e79e8fe04f0ef74872ff078 100644 --- a/src/plugins/power/common/Makefile.in +++ b/src/plugins/power/common/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/power/cray/Makefile.in b/src/plugins/power/cray/Makefile.in index d86c86bfd84d3da5c48c4967a4aa2324a75ba34b..c152c098f5ecc4375aae1e964ea53e1ae2af8cd1 100644 --- a/src/plugins/power/cray/Makefile.in +++ b/src/plugins/power/cray/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/power/none/Makefile.in b/src/plugins/power/none/Makefile.in index a0f109303affc95da6491d374303d4804f0afef1..f2f841e31712256a14ea88942440a402cda49573 100644 --- a/src/plugins/power/none/Makefile.in +++ b/src/plugins/power/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/preempt/Makefile.in b/src/plugins/preempt/Makefile.in index bece8330975b9cc82562ea30e5114eb501cee51a..477a8e9c81c385e8c5cfb653383f9615df6e6844 100644 --- a/src/plugins/preempt/Makefile.in +++ b/src/plugins/preempt/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/preempt/none/Makefile.in b/src/plugins/preempt/none/Makefile.in index 7348587da67f17536b9aae373e0c2350e94cb8b8..5efed528eb40a8bbdfea869d5e9da6bffa4b4d1b 100644 --- a/src/plugins/preempt/none/Makefile.in +++ b/src/plugins/preempt/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/preempt/partition_prio/Makefile.in b/src/plugins/preempt/partition_prio/Makefile.in index e62f1a33c9d38170ba7649f51ca468bee2c400de..d25a1ed60d45d32c3c4d4d9f3d8061cdd86184f5 100644 --- a/src/plugins/preempt/partition_prio/Makefile.in +++ b/src/plugins/preempt/partition_prio/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/preempt/qos/Makefile.in b/src/plugins/preempt/qos/Makefile.in index c4a2f19be8d2343a89b3d743825d73eb06689636..437c1331fbc2f6a7df8e2249b7af0777bb6021d1 100644 --- a/src/plugins/preempt/qos/Makefile.in +++ b/src/plugins/preempt/qos/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/priority/Makefile.in b/src/plugins/priority/Makefile.in index 498a166442653c4f83ba78595a061b67bbf9d50f..eb6229ddb66afe2632cbaefea5e0f2a79ae8616d 100644 --- a/src/plugins/priority/Makefile.in +++ b/src/plugins/priority/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/priority/basic/Makefile.in b/src/plugins/priority/basic/Makefile.in index 360f2d2197acc752b2ff58186e872bba0b25db25..0a33af0ea3866fdb877f1f09eea02462a66b084c 100644 --- a/src/plugins/priority/basic/Makefile.in +++ b/src/plugins/priority/basic/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/priority/multifactor/Makefile.in b/src/plugins/priority/multifactor/Makefile.in index a25bec261f2c59159fafcc1969f0b67e36ff545c..01f063a836742c917d69737b7c4ee9807f6baf04 100644 --- a/src/plugins/priority/multifactor/Makefile.in +++ b/src/plugins/priority/multifactor/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/proctrack/Makefile.am b/src/plugins/proctrack/Makefile.am index 577bbcdbe53ee2b128d1b254aa44f3d6a3cc9b6e..2176ba11c04333a516f2afb9f9a4ee9a2dad15f6 100644 --- a/src/plugins/proctrack/Makefile.am +++ b/src/plugins/proctrack/Makefile.am @@ -1,18 +1,11 @@ # Makefile for proctrack plugins -# On a native cray the sgi_job is similar but different enough we felt we -# wanted to make a new plugin to not break other implementations. - if HAVE_NATIVE_CRAY CRAY = cray -else -if HAVE_SGI_JOB -SGI_JOB = sgi_job -endif endif if HAVE_LUA LUA = lua endif -SUBDIRS = $(CRAY) $(SGI_JOB) $(LUA) pgid linuxproc cgroup +SUBDIRS = $(CRAY) $(LUA) pgid linuxproc cgroup diff --git a/src/plugins/proctrack/Makefile.in b/src/plugins/proctrack/Makefile.in index 552abefde26323047f43ba8ca37a4e5cd2ae18ba..451ab66088f9cd305d197bb32744822d29e08fb6 100644 --- a/src/plugins/proctrack/Makefile.in +++ b/src/plugins/proctrack/Makefile.in @@ -15,9 +15,6 @@ @SET_MAKE@ # Makefile for proctrack plugins - -# On a native cray the sgi_job is similar but different enough we felt we -# wanted to make a new plugin to not break other implementations. VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ @@ -135,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ @@ -203,7 +199,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -DIST_SUBDIRS = cray sgi_job lua pgid linuxproc cgroup +DIST_SUBDIRS = cray lua pgid linuxproc cgroup am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ @@ -488,9 +484,8 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ @HAVE_NATIVE_CRAY_TRUE@CRAY = cray -@HAVE_NATIVE_CRAY_FALSE@@HAVE_SGI_JOB_TRUE@SGI_JOB = sgi_job @HAVE_LUA_TRUE@LUA = lua -SUBDIRS = $(CRAY) $(SGI_JOB) $(LUA) pgid linuxproc cgroup +SUBDIRS = $(CRAY) $(LUA) pgid linuxproc cgroup all: all-recursive .SUFFIXES: diff --git a/src/plugins/proctrack/cgroup/Makefile.in b/src/plugins/proctrack/cgroup/Makefile.in index 68596686db01df2d8ce67d20e7e332f68ba093b6..1e8edd4f4b656a618723ab219b8e1c0058abd957 100644 --- a/src/plugins/proctrack/cgroup/Makefile.in +++ b/src/plugins/proctrack/cgroup/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/proctrack/cray/Makefile.in b/src/plugins/proctrack/cray/Makefile.in index 1e5ebf9a0658d3cb296505d00efff5a03118415c..ad421e8eba1e74a2c56b760bcede39eb950f5ff7 100644 --- a/src/plugins/proctrack/cray/Makefile.in +++ b/src/plugins/proctrack/cray/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/proctrack/linuxproc/Makefile.in b/src/plugins/proctrack/linuxproc/Makefile.in index 1204ae73361a177565a8dce579a0fb17969f5510..83b8a65ef9c6a0aba2917bdcbb39a7f90b401ef4 100644 --- a/src/plugins/proctrack/linuxproc/Makefile.in +++ b/src/plugins/proctrack/linuxproc/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/proctrack/lua/Makefile.in b/src/plugins/proctrack/lua/Makefile.in index bb4cbabce4a9e260e8ef5051d7d84cce0dd8fe63..b5cb97d072a4d02a9eff398a28230f600d8fb277 100644 --- a/src/plugins/proctrack/lua/Makefile.in +++ b/src/plugins/proctrack/lua/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/proctrack/pgid/Makefile.in b/src/plugins/proctrack/pgid/Makefile.in index 91a8ccd2280352bb10f4339195ee087ad496219c..51390e46c83cf75af15c52a95517234f83fe0918 100644 --- a/src/plugins/proctrack/pgid/Makefile.in +++ b/src/plugins/proctrack/pgid/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/proctrack/sgi_job/Makefile.am b/src/plugins/proctrack/sgi_job/Makefile.am deleted file mode 100644 index 35b34a9966a83a5ff2718796764913c2bbbc0cb2..0000000000000000000000000000000000000000 --- a/src/plugins/proctrack/sgi_job/Makefile.am +++ /dev/null @@ -1,14 +0,0 @@ -# Makefile for proctrack/sgi_job plugin - -AUTOMAKE_OPTIONS = foreign - -PLUGIN_FLAGS = - -module -avoid-version --export-dynamic - -AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/src/common - -pkglib_LTLIBRARIES = proctrack_sgi_job.la - -proctrack_sgi_job_la_SOURCES = proctrack_sgi_job.c -proctrack_sgi_job_la_LDFLAGS = $(PLUGIN_FLAGS) $(OTHER_FLAGS) -# Don't need to add -ljob because we dlopen the .so to avoid -# symbol collisions with slurm functions diff --git a/src/plugins/proctrack/sgi_job/Makefile.in b/src/plugins/proctrack/sgi_job/Makefile.in deleted file mode 100644 index 3112e41246081f769ddd5df293eb79ef737f65df..0000000000000000000000000000000000000000 --- a/src/plugins/proctrack/sgi_job/Makefile.in +++ /dev/null @@ -1,835 +0,0 @@ -# Makefile.in generated by automake 1.15.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994-2017 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -# Makefile for proctrack/sgi_job plugin - -VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -target_triplet = @target@ -subdir = src/plugins/proctrack/sgi_job -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ - $(top_srcdir)/auxdir/ax_check_zlib.m4 \ - $(top_srcdir)/auxdir/ax_gcc_builtin.m4 \ - $(top_srcdir)/auxdir/ax_lib_hdf5.m4 \ - $(top_srcdir)/auxdir/ax_pthread.m4 \ - $(top_srcdir)/auxdir/libtool.m4 \ - $(top_srcdir)/auxdir/ltoptions.m4 \ - $(top_srcdir)/auxdir/ltsugar.m4 \ - $(top_srcdir)/auxdir/ltversion.m4 \ - $(top_srcdir)/auxdir/lt~obsolete.m4 \ - $(top_srcdir)/auxdir/slurm.m4 \ - $(top_srcdir)/auxdir/x_ac__system_configuration.m4 \ - $(top_srcdir)/auxdir/x_ac_affinity.m4 \ - $(top_srcdir)/auxdir/x_ac_blcr.m4 \ - $(top_srcdir)/auxdir/x_ac_cray.m4 \ - $(top_srcdir)/auxdir/x_ac_curl.m4 \ - $(top_srcdir)/auxdir/x_ac_databases.m4 \ - $(top_srcdir)/auxdir/x_ac_debug.m4 \ - $(top_srcdir)/auxdir/x_ac_deprecated.m4 \ - $(top_srcdir)/auxdir/x_ac_dlfcn.m4 \ - $(top_srcdir)/auxdir/x_ac_env.m4 \ - $(top_srcdir)/auxdir/x_ac_freeipmi.m4 \ - $(top_srcdir)/auxdir/x_ac_hwloc.m4 \ - $(top_srcdir)/auxdir/x_ac_iso.m4 \ - $(top_srcdir)/auxdir/x_ac_json.m4 \ - $(top_srcdir)/auxdir/x_ac_lua.m4 \ - $(top_srcdir)/auxdir/x_ac_lz4.m4 \ - $(top_srcdir)/auxdir/x_ac_man2html.m4 \ - $(top_srcdir)/auxdir/x_ac_munge.m4 \ - $(top_srcdir)/auxdir/x_ac_ncurses.m4 \ - $(top_srcdir)/auxdir/x_ac_netloc.m4 \ - $(top_srcdir)/auxdir/x_ac_nrt.m4 \ - $(top_srcdir)/auxdir/x_ac_ofed.m4 \ - $(top_srcdir)/auxdir/x_ac_pam.m4 \ - $(top_srcdir)/auxdir/x_ac_pmix.m4 \ - $(top_srcdir)/auxdir/x_ac_printf_null.m4 \ - $(top_srcdir)/auxdir/x_ac_ptrace.m4 \ - $(top_srcdir)/auxdir/x_ac_readline.m4 \ - $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ - $(top_srcdir)/auxdir/x_ac_systemd.m4 \ - $(top_srcdir)/auxdir/x_ac_ucx.m4 \ - $(top_srcdir)/auxdir/x_ac_uid_gid_size.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/slurm/slurm.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__installdirs = "$(DESTDIR)$(pkglibdir)" -LTLIBRARIES = $(pkglib_LTLIBRARIES) -proctrack_sgi_job_la_LIBADD = -am_proctrack_sgi_job_la_OBJECTS = proctrack_sgi_job.lo -proctrack_sgi_job_la_OBJECTS = $(am_proctrack_sgi_job_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -proctrack_sgi_job_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(AM_CFLAGS) $(CFLAGS) $(proctrack_sgi_job_la_LDFLAGS) \ - $(LDFLAGS) -o $@ -AM_V_P = $(am__v_P_@AM_V@) -am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -I$(top_builddir)/slurm -depcomp = $(SHELL) $(top_srcdir)/auxdir/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(proctrack_sgi_job_la_SOURCES) -DIST_SOURCES = $(proctrack_sgi_job_la_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/auxdir/depcomp -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -BLCR_CPPFLAGS = @BLCR_CPPFLAGS@ -BLCR_HOME = @BLCR_HOME@ -BLCR_LDFLAGS = @BLCR_LDFLAGS@ -BLCR_LIBS = @BLCR_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CHECK_CFLAGS = @CHECK_CFLAGS@ -CHECK_LIBS = @CHECK_LIBS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CRAY_JOB_CPPFLAGS = @CRAY_JOB_CPPFLAGS@ -CRAY_JOB_LDFLAGS = @CRAY_JOB_LDFLAGS@ -CRAY_SELECT_CPPFLAGS = @CRAY_SELECT_CPPFLAGS@ -CRAY_SELECT_LDFLAGS = @CRAY_SELECT_LDFLAGS@ -CRAY_SWITCH_CPPFLAGS = @CRAY_SWITCH_CPPFLAGS@ -CRAY_SWITCH_LDFLAGS = @CRAY_SWITCH_LDFLAGS@ -CRAY_TASK_CPPFLAGS = @CRAY_TASK_CPPFLAGS@ -CRAY_TASK_LDFLAGS = @CRAY_TASK_LDFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATAWARP_CPPFLAGS = @DATAWARP_CPPFLAGS@ -DATAWARP_LDFLAGS = @DATAWARP_LDFLAGS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DL_LIBS = @DL_LIBS@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FREEIPMI_CPPFLAGS = @FREEIPMI_CPPFLAGS@ -FREEIPMI_LDFLAGS = @FREEIPMI_LDFLAGS@ -FREEIPMI_LIBS = @FREEIPMI_LIBS@ -GLIB_CFLAGS = @GLIB_CFLAGS@ -GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ -GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ -GLIB_LIBS = @GLIB_LIBS@ -GLIB_MKENUMS = @GLIB_MKENUMS@ -GOBJECT_QUERY = @GOBJECT_QUERY@ -GREP = @GREP@ -GTK_CFLAGS = @GTK_CFLAGS@ -GTK_LIBS = @GTK_LIBS@ -H5CC = @H5CC@ -H5FC = @H5FC@ -HAVEMYSQLCONFIG = @HAVEMYSQLCONFIG@ -HAVE_MAN2HTML = @HAVE_MAN2HTML@ -HAVE_NRT = @HAVE_NRT@ -HAVE_OPENSSL = @HAVE_OPENSSL@ -HAVE_SOME_CURSES = @HAVE_SOME_CURSES@ -HDF5_CC = @HDF5_CC@ -HDF5_CFLAGS = @HDF5_CFLAGS@ -HDF5_CPPFLAGS = @HDF5_CPPFLAGS@ -HDF5_FC = @HDF5_FC@ -HDF5_FFLAGS = @HDF5_FFLAGS@ -HDF5_FLIBS = @HDF5_FLIBS@ -HDF5_LDFLAGS = @HDF5_LDFLAGS@ -HDF5_LIBS = @HDF5_LIBS@ -HDF5_TYPE = @HDF5_TYPE@ -HDF5_VERSION = @HDF5_VERSION@ -HWLOC_CPPFLAGS = @HWLOC_CPPFLAGS@ -HWLOC_LDFLAGS = @HWLOC_LDFLAGS@ -HWLOC_LIBS = @HWLOC_LIBS@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -JSON_CPPFLAGS = @JSON_CPPFLAGS@ -JSON_LDFLAGS = @JSON_LDFLAGS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBCURL = @LIBCURL@ -LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIB_SLURM = @LIB_SLURM@ -LIB_SLURMDB = @LIB_SLURMDB@ -LIB_SLURMDB_BUILD = @LIB_SLURMDB_BUILD@ -LIB_SLURM_BUILD = @LIB_SLURM_BUILD@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ -LZ4_CPPFLAGS = @LZ4_CPPFLAGS@ -LZ4_LDFLAGS = @LZ4_LDFLAGS@ -LZ4_LIBS = @LZ4_LIBS@ -MAINT = @MAINT@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MKDIR_P = @MKDIR_P@ -MUNGE_CPPFLAGS = @MUNGE_CPPFLAGS@ -MUNGE_DIR = @MUNGE_DIR@ -MUNGE_LDFLAGS = @MUNGE_LDFLAGS@ -MUNGE_LIBS = @MUNGE_LIBS@ -MYSQL_CFLAGS = @MYSQL_CFLAGS@ -MYSQL_LIBS = @MYSQL_LIBS@ -NCURSES = @NCURSES@ -NETLOC_CPPFLAGS = @NETLOC_CPPFLAGS@ -NETLOC_LDFLAGS = @NETLOC_LDFLAGS@ -NETLOC_LIBS = @NETLOC_LIBS@ -NM = @NM@ -NMEDIT = @NMEDIT@ -NRT_CPPFLAGS = @NRT_CPPFLAGS@ -NUMA_LIBS = @NUMA_LIBS@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OFED_CPPFLAGS = @OFED_CPPFLAGS@ -OFED_LDFLAGS = @OFED_LDFLAGS@ -OFED_LIBS = @OFED_LIBS@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PAM_DIR = @PAM_DIR@ -PAM_LIBS = @PAM_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -PMIX_V1_CPPFLAGS = @PMIX_V1_CPPFLAGS@ -PMIX_V1_LDFLAGS = @PMIX_V1_LDFLAGS@ -PMIX_V2_CPPFLAGS = @PMIX_V2_CPPFLAGS@ -PMIX_V2_LDFLAGS = @PMIX_V2_LDFLAGS@ -PMIX_V3_CPPFLAGS = @PMIX_V3_CPPFLAGS@ -PMIX_V3_LDFLAGS = @PMIX_V3_LDFLAGS@ -PROJECT = @PROJECT@ -PTHREAD_CC = @PTHREAD_CC@ -PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ -PTHREAD_LIBS = @PTHREAD_LIBS@ -RANLIB = @RANLIB@ -READLINE_LIBS = @READLINE_LIBS@ -RELEASE = @RELEASE@ -RRDTOOL_CPPFLAGS = @RRDTOOL_CPPFLAGS@ -RRDTOOL_LDFLAGS = @RRDTOOL_LDFLAGS@ -RRDTOOL_LIBS = @RRDTOOL_LIBS@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -SLEEP_CMD = @SLEEP_CMD@ -SLURMCTLD_PORT = @SLURMCTLD_PORT@ -SLURMCTLD_PORT_COUNT = @SLURMCTLD_PORT_COUNT@ -SLURMDBD_PORT = @SLURMDBD_PORT@ -SLURMD_PORT = @SLURMD_PORT@ -SLURM_API_AGE = @SLURM_API_AGE@ -SLURM_API_CURRENT = @SLURM_API_CURRENT@ -SLURM_API_MAJOR = @SLURM_API_MAJOR@ -SLURM_API_REVISION = @SLURM_API_REVISION@ -SLURM_API_VERSION = @SLURM_API_VERSION@ -SLURM_MAJOR = @SLURM_MAJOR@ -SLURM_MICRO = @SLURM_MICRO@ -SLURM_MINOR = @SLURM_MINOR@ -SLURM_PREFIX = @SLURM_PREFIX@ -SLURM_VERSION_NUMBER = @SLURM_VERSION_NUMBER@ -SLURM_VERSION_STRING = @SLURM_VERSION_STRING@ -SSH2_CPPFLAGS = @SSH2_CPPFLAGS@ -SSH2_LDFLAGS = @SSH2_LDFLAGS@ -SSH2_LIBS = @SSH2_LIBS@ -SSL_CPPFLAGS = @SSL_CPPFLAGS@ -SSL_LDFLAGS = @SSL_LDFLAGS@ -SSL_LIBS = @SSL_LIBS@ -STRIP = @STRIP@ -SUCMD = @SUCMD@ -SYSTEMD_TASKSMAX_OPTION = @SYSTEMD_TASKSMAX_OPTION@ -UCX_CPPFLAGS = @UCX_CPPFLAGS@ -UCX_LDFLAGS = @UCX_LDFLAGS@ -UCX_LIBS = @UCX_LIBS@ -UTIL_LIBS = @UTIL_LIBS@ -VERSION = @VERSION@ -ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@ -ZLIB_LDFLAGS = @ZLIB_LDFLAGS@ -ZLIB_LIBS = @ZLIB_LIBS@ -_libcurl_config = @_libcurl_config@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -ac_have_man2html = @ac_have_man2html@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -ax_pthread_config = @ax_pthread_config@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -lua_CFLAGS = @lua_CFLAGS@ -lua_LIBS = @lua_LIBS@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -runstatedir = @runstatedir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target = @target@ -target_alias = @target_alias@ -target_cpu = @target_cpu@ -target_os = @target_os@ -target_vendor = @target_vendor@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -AUTOMAKE_OPTIONS = foreign -PLUGIN_FLAGS = - -module -avoid-version --export-dynamic -AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/src/common -pkglib_LTLIBRARIES = proctrack_sgi_job.la -proctrack_sgi_job_la_SOURCES = proctrack_sgi_job.c -proctrack_sgi_job_la_LDFLAGS = $(PLUGIN_FLAGS) $(OTHER_FLAGS) -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/plugins/proctrack/sgi_job/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/plugins/proctrack/sgi_job/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \ - } - -uninstall-pkglibLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \ - done - -clean-pkglibLTLIBRARIES: - -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES) - @list='$(pkglib_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -proctrack_sgi_job.la: $(proctrack_sgi_job_la_OBJECTS) $(proctrack_sgi_job_la_DEPENDENCIES) $(EXTRA_proctrack_sgi_job_la_DEPENDENCIES) - $(AM_V_CCLD)$(proctrack_sgi_job_la_LINK) -rpath $(pkglibdir) $(proctrack_sgi_job_la_OBJECTS) $(proctrack_sgi_job_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/proctrack_sgi_job.Plo@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) -installdirs: - for dir in "$(DESTDIR)$(pkglibdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-pkglibLTLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-pkglibLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-pkglibLTLIBRARIES - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-pkglibLTLIBRARIES cscopelist-am ctags \ - ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-pkglibLTLIBRARIES install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ - uninstall-pkglibLTLIBRARIES - -.PRECIOUS: Makefile - -# Don't need to add -ljob because we dlopen the .so to avoid -# symbol collisions with slurm functions - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/src/plugins/proctrack/sgi_job/proctrack_sgi_job.c b/src/plugins/proctrack/sgi_job/proctrack_sgi_job.c deleted file mode 100644 index 97a0ca23850e5536c0d047895a5d4ce0cd1324b2..0000000000000000000000000000000000000000 --- a/src/plugins/proctrack/sgi_job/proctrack_sgi_job.c +++ /dev/null @@ -1,304 +0,0 @@ -/*****************************************************************************\ - * proctrack_sgi_job.c - process tracking via SGI's "job" module. - ***************************************************************************** - * Copyright (C) 2005 The Regents of the University of California. - * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). - * Written by Mark Grondona <mgrondona@llnl.gov> - * CODE-OCEC-09-009. All rights reserved. - * - * This file is part of Slurm, a resource management program. - * For details, see <https://slurm.schedmd.com/>. - * Please also read the included file: DISCLAIMER. - * - * Slurm is free software; you can redistribute it and/or modify it under - * the terms of the GNU General Public License as published by the Free - * Software Foundation; either version 2 of the License, or (at your option) - * any later version. - * - * In addition, as a special exception, the copyright holders give permission - * to link the code of portions of this program with the OpenSSL library under - * certain conditions as described in each individual source file, and - * distribute linked combinations including the two. You must obey the GNU - * General Public License in all respects for all of the code used other than - * OpenSSL. If you modify file(s) with this exception, you may extend this - * exception to your version of the file(s), but you are not obligated to do - * so. If you do not wish to do so, delete this exception statement from your - * version. If you delete this exception statement from all source files in - * the program, then also delete it here. - * - * Slurm is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more - * details. - * - * You should have received a copy of the GNU General Public License along - * with Slurm; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -\*****************************************************************************/ - -#include <dlfcn.h> -#include <inttypes.h> -#include <signal.h> -#include <stdlib.h> -#include <sys/types.h> -#include <unistd.h> - -#include "slurm/slurm.h" -#include "slurm/slurm_errno.h" -#include "src/common/log.h" - -#include "src/slurmd/slurmstepd/slurmstepd_job.h" - -const char plugin_name[] = "Process tracking via SGI job module"; -const char plugin_type[] = "proctrack/sgi_job"; -const uint32_t plugin_version = SLURM_VERSION_NUMBER; - -/* - * We can't include <job.h> since its prototypes conflict with some - * of Slurm's. Instead, put important function protypes and - * the jid_t typedef here: - */ -typedef uint64_t jid_t; - -typedef jid_t (*create_f) (jid_t jid_requested, uid_t uid, int options); -typedef jid_t (*getjid_f) (pid_t pid); -typedef jid_t (*waitjid_f) (jid_t jid, int *status, int options); -typedef int (*killjid_f) (jid_t jid, int sig); -typedef jid_t (*detachpid_f) (pid_t pid); -typedef jid_t (*attachpid_f) (pid_t pid, jid_t jid_requested); -typedef int (*getpidlist_f)(jid_t jid, pid_t *pid, int bufsize); -typedef int (*getpidcnt_f) (jid_t jid); - -/* - * Handle to libjob.so - */ -static void *libjob_handle = NULL; - -/* - * libjob operations we'll need in this plugin - */ -static struct job_operations { - create_f create; - getjid_f getjid; - waitjid_f waitjid; - killjid_f killjid; - detachpid_f detachpid; - attachpid_f attachpid; - getpidlist_f getpidlist; - getpidcnt_f getpidcnt; -} job_ops; - - -/* - * init() is called when the plugin is loaded, before any other functions - * are called. Put global initialization here. - */ -int init (void) -{ - /* We dlopen() libjob.so instead of directly linking to it - * because of symbols like "job_create" in libjob which - * conflict with symbols in slurmd. dlopening the library - * prevents these symbols from going into the global namespace. - */ - if ((libjob_handle = dlopen ("libjob.so", RTLD_LAZY)) == NULL) { - error ("Unable to open libjob.so: %m"); - return SLURM_ERROR; - } - - job_ops.create = dlsym (libjob_handle, "job_create"); - job_ops.getjid = dlsym (libjob_handle, "job_getjid"); - job_ops.waitjid = dlsym (libjob_handle, "job_waitjid"); - job_ops.killjid = dlsym (libjob_handle, "job_killjid"); - job_ops.detachpid = dlsym (libjob_handle, "job_detachpid"); - job_ops.attachpid = dlsym (libjob_handle, "job_attachpid"); - job_ops.getpidlist= dlsym (libjob_handle, "job_getpidlist"); - job_ops.getpidcnt = dlsym (libjob_handle, "job_getpidcnt"); - - if (!job_ops.create) - error ("Unable to resolve job_create in libjob.so"); - if (!job_ops.getjid) - error ("Unable to resolve job_getjid in libjob.so"); - if (!job_ops.waitjid) - error ("Unable to resolve job_waitjid in libjob.so"); - if (!job_ops.killjid) - error ("Unable to resolve job_killjid in libjob.so"); - if (!job_ops.detachpid) - error ("Unable to resolve job_detachpid in libjob.so"); - if (!job_ops.attachpid) - error ("Unable to resolve job_attachpid in libjob.so"); - if (!job_ops.getpidlist) - error ("Unable to resolve job_getpidlist in libjob.so"); - if (!job_ops.getpidcnt) - error ("Unable to resolve job_getpidcnt in libjob.so"); - - debug ("successfully loaded libjob.so"); - return SLURM_SUCCESS; -} - -int fini (void) -{ - dlclose (libjob_handle); - return SLURM_SUCCESS; -} - -jid_t _job_create (jid_t jid, uid_t uid, int options) -{ - return ((*job_ops.create) (jid, uid, options)); -} - -jid_t _job_getjid (pid_t pid) -{ - return ((*job_ops.getjid) (pid)); -} - -jid_t _job_waitjid (jid_t jid, int *status, int options) -{ - return ((*job_ops.waitjid) (jid, status, options)); -} - -int _job_killjid (jid_t jid, int sig) -{ - return ((*job_ops.killjid) (jid, sig)); -} - -int _job_detachpid (pid_t pid) -{ - return ((*job_ops.detachpid) (pid)); -} - -int _job_attachpid (pid_t pid, jid_t jid) -{ - return ((*job_ops.attachpid) (pid, jid)); -} - -int _job_getpidlist (jid_t jid, pid_t *pid, int bufsize) -{ - return ((*job_ops.getpidlist) (jid, pid, bufsize)); -} - -int _job_getpidcnt (jid_t jid) -{ - return ((*job_ops.getpidcnt) (jid)); -} - -int proctrack_p_create (stepd_step_rec_t *job) -{ - if (!libjob_handle) - init(); - - if ((job->cont_id = _job_create (0, job->uid, 0)) == (jid_t) -1) { - error ("Failed to create job container: %m"); - return SLURM_ERROR; - } - - debug ("created jid 0x%08lx", job->cont_id); - - return SLURM_SUCCESS; -} - -/* NOTE: This function is called after slurmstepd spawns all user tasks. - * Since the slurmstepd was placed in the job container when the container - * was created and all of it's spawned tasks are placed into the container - * when forked, all we need to do is remove the slurmstepd from the container - * (once) at this time. */ -int proctrack_p_add (stepd_step_rec_t *job, pid_t pid) -{ - static bool first = 1; - - if (!first) - return SLURM_SUCCESS; - - first = 0; - - /* - * Detach ourselves from the job container now that there - * is at least one other process in it. - */ - if (_job_detachpid(getpid()) == (jid_t) -1) { - error("Failed to detach from job container: %m"); - return SLURM_ERROR; - } - - return SLURM_SUCCESS; -} - -int proctrack_p_signal (uint64_t id, int sig) -{ - if ( (_job_killjid ((jid_t) id, sig) < 0) - && (errno != ENODATA) && (errno != EBADF) ) - return (SLURM_ERROR); - return (SLURM_SUCCESS); -} - -int proctrack_p_destroy (uint64_t id) -{ - int status; - _job_waitjid ((jid_t) id, &status, 0); - /* Assume any error means job doesn't exist. Therefore, - * return SUCCESS to slurmd so it doesn't retry continuously - */ - return SLURM_SUCCESS; -} - -uint64_t proctrack_p_find (pid_t pid) -{ - jid_t jid; - - if ((jid = _job_getjid (pid)) == (jid_t) -1) - return ((uint64_t) 0); - - return ((uint64_t) jid); -} - -bool proctrack_p_has_pid (uint64_t cont_id, pid_t pid) -{ - jid_t jid; - - if ((jid = _job_getjid (pid)) == (jid_t) -1) - return false; - if ((uint64_t)jid != cont_id) - return false; - - return true; -} - -int proctrack_p_wait (uint64_t id) -{ - int status; - if (_job_waitjid ((jid_t) id, &status, 0) == (jid_t)-1) - return SLURM_ERROR; - - return SLURM_SUCCESS; -} - -int proctrack_p_get_pids(uint64_t cont_id, pid_t **pids, int *npids) -{ - int pidcnt, bufsize; - pid_t *p; - - pidcnt = _job_getpidcnt((jid_t)cont_id); - if (pidcnt > 0) { - /* - * FIXME - The "+ 128" is a rough attempt to allow for - * the fact that _job_getpidcnt() followed by _job_get_pidlist - * is not atomic. - */ - bufsize = sizeof(pid_t) * (pidcnt + 128); - p = (pid_t *)xmalloc(bufsize); - pidcnt = _job_getpidlist((jid_t)cont_id, p, bufsize); - if (pidcnt == -1) { - error("job_getpidlist() failed: %m"); - *pids = NULL; - *npids = 0; - xfree(p); - return SLURM_ERROR; - } - *pids = p; - *npids = pidcnt; - } else { - *pids = NULL; - *npids = 0; - } - - return SLURM_SUCCESS; -} diff --git a/src/plugins/route/Makefile.in b/src/plugins/route/Makefile.in index 629b42c0f621b4afec3cb10c2ea90c3692a1778c..60d7390c0a3ca9098d210954cb772c2468f004d7 100644 --- a/src/plugins/route/Makefile.in +++ b/src/plugins/route/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/route/default/Makefile.in b/src/plugins/route/default/Makefile.in index 3306a464a1898e80416f8a2d406142540f35cc31..9413f1d23f7aa37268b053fa8c51fad8f9b60f6b 100644 --- a/src/plugins/route/default/Makefile.in +++ b/src/plugins/route/default/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/route/topology/Makefile.in b/src/plugins/route/topology/Makefile.in index 9ad21fdcec515d9a292e86e2646862156b780ee0..327179ef0cf35db094a2009ab38a7c1c971c84d6 100644 --- a/src/plugins/route/topology/Makefile.in +++ b/src/plugins/route/topology/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/sched/Makefile.in b/src/plugins/sched/Makefile.in index 9dda1b05a3ee85722bdb631286440df6306d9776..8aeda6ac3dbc7c241b90fe53481bd5da1a683199 100644 --- a/src/plugins/sched/Makefile.in +++ b/src/plugins/sched/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/sched/backfill/Makefile.in b/src/plugins/sched/backfill/Makefile.in index 2c72aedb4399f1d8c803ae51a07350099d820998..834690786602c691c2c6b3225af7c49e10826e74 100644 --- a/src/plugins/sched/backfill/Makefile.in +++ b/src/plugins/sched/backfill/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/sched/builtin/Makefile.in b/src/plugins/sched/builtin/Makefile.in index 3cfdfbd939298ac1cd2586c94a335a3506ff5a25..6ea1cca486e9e0da9a09c123784e55af1237a1c1 100644 --- a/src/plugins/sched/builtin/Makefile.in +++ b/src/plugins/sched/builtin/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/sched/hold/Makefile.in b/src/plugins/sched/hold/Makefile.in index 63c23d7ad79bb2fb5280d01966a9deb6dfe0baca..2fdaa03addf90578eba83f7dc69f25b9dc01ff51 100644 --- a/src/plugins/sched/hold/Makefile.in +++ b/src/plugins/sched/hold/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/select/Makefile.in b/src/plugins/select/Makefile.in index f7d0d6c764c7b99778297b96d12e7f309e3079a1..9bdc71f56f873206c91d3920d72dc6f1b4d1865f 100644 --- a/src/plugins/select/Makefile.in +++ b/src/plugins/select/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/select/cons_res/Makefile.in b/src/plugins/select/cons_res/Makefile.in index f0a3ece1c50256071a748582837495c15e566128..fe73a93c9d1e75bf5c5813ae0c20d4e2b893ab36 100644 --- a/src/plugins/select/cons_res/Makefile.in +++ b/src/plugins/select/cons_res/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/select/cons_tres/Makefile.in b/src/plugins/select/cons_tres/Makefile.in index 006df24e36fe6db937ed8f8696a14e0fe314b3d8..b93de262fe13dd08af91090500c4c4e020c67a48 100644 --- a/src/plugins/select/cons_tres/Makefile.in +++ b/src/plugins/select/cons_tres/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/select/cray/Makefile.in b/src/plugins/select/cray/Makefile.in index 8fe04573b8d8a7e4c3cc2e68c5aa490c6620857f..d708adda7f95d2ce5f01aa418f2b4c4203bd80d6 100644 --- a/src/plugins/select/cray/Makefile.in +++ b/src/plugins/select/cray/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/select/linear/Makefile.in b/src/plugins/select/linear/Makefile.in index b3547e8699c6342819d23cfb0244db5182089db2..cd5ed6b3bba4a37e1b45eae2f6b2b76c6a30c2e1 100644 --- a/src/plugins/select/linear/Makefile.in +++ b/src/plugins/select/linear/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/select/other/Makefile.in b/src/plugins/select/other/Makefile.in index e8abb48a494cc49422ef8bd601030c06ef380e02..d045c369e0bf312a052a8f3866ef438634f936e9 100644 --- a/src/plugins/select/other/Makefile.in +++ b/src/plugins/select/other/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/select/serial/Makefile.in b/src/plugins/select/serial/Makefile.in index 11c29c89b052663742d4c541fd807a46b5f149e6..cc3388cbbd5f2dd820a1649e656ef9ab04686d77 100644 --- a/src/plugins/select/serial/Makefile.in +++ b/src/plugins/select/serial/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/slurmctld/Makefile.in b/src/plugins/slurmctld/Makefile.in index a6e3986bacf004005a2edc00717b6375dbe52141..68bfcc0896858e5c0b306a37e687455fe10db2ed 100644 --- a/src/plugins/slurmctld/Makefile.in +++ b/src/plugins/slurmctld/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/slurmctld/nonstop/Makefile.in b/src/plugins/slurmctld/nonstop/Makefile.in index 324d9deb5cd10aab2f8a254ca34494c240d8a40f..e5b69beae464d44c7bca800d1a5a3fd65e70b927 100644 --- a/src/plugins/slurmctld/nonstop/Makefile.in +++ b/src/plugins/slurmctld/nonstop/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/switch/Makefile.in b/src/plugins/switch/Makefile.in index 8907e88b26ac925267c61018f7f781f29a08aa2a..3335234ac819ec64d7d8cfdd26f3e41dc86c882a 100644 --- a/src/plugins/switch/Makefile.in +++ b/src/plugins/switch/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/switch/cray/Makefile.in b/src/plugins/switch/cray/Makefile.in index c4b9b5be4c19414fbb7a7a169ead725ca8bbdf06..d46ade81c554fbf1e36eeebdbd4e01dead3cac02 100644 --- a/src/plugins/switch/cray/Makefile.in +++ b/src/plugins/switch/cray/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/switch/generic/Makefile.in b/src/plugins/switch/generic/Makefile.in index 85d230a648057583d50ed5640c24173826e28938..7f2778dc7f50c02b5dc3d59ee8c30f86f03e376f 100644 --- a/src/plugins/switch/generic/Makefile.in +++ b/src/plugins/switch/generic/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/switch/none/Makefile.in b/src/plugins/switch/none/Makefile.in index 37d9d049d4c812ee01a9b581220a937e4f5e4804..0ef3274a874942d6a4524a8f6ea43ecc4e9c1604 100644 --- a/src/plugins/switch/none/Makefile.in +++ b/src/plugins/switch/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/switch/nrt/Makefile.in b/src/plugins/switch/nrt/Makefile.in index 7700f3a7f22123870c2f4585e05b00282510b5b1..8ba181d54afef41cad4817264d8725e90c6857cb 100644 --- a/src/plugins/switch/nrt/Makefile.in +++ b/src/plugins/switch/nrt/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/switch/nrt/libpermapi/Makefile.in b/src/plugins/switch/nrt/libpermapi/Makefile.in index 6eef3365a086c13ec1dc47a876f08517a99d98c5..01382d914b7fc5253df928fe0e45ebf0ea53751f 100644 --- a/src/plugins/switch/nrt/libpermapi/Makefile.in +++ b/src/plugins/switch/nrt/libpermapi/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/task/Makefile.in b/src/plugins/task/Makefile.in index d3a897cf957a370f896f96a3e4e8a25339f2bb98..aab351665423d935c81d66cddc8603b0c311e11e 100644 --- a/src/plugins/task/Makefile.in +++ b/src/plugins/task/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/task/affinity/Makefile.in b/src/plugins/task/affinity/Makefile.in index cdbca1aa46c5a3621663087e706d6985f8a7c418..cf8d3f44c352bcf447739ca960625509e33f2269 100644 --- a/src/plugins/task/affinity/Makefile.in +++ b/src/plugins/task/affinity/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/task/cgroup/Makefile.in b/src/plugins/task/cgroup/Makefile.in index 040238fa4dd862500dbd8a8741ae85654556169f..f9d57fdea2c61a11f08754a925cbd4624c260074 100644 --- a/src/plugins/task/cgroup/Makefile.in +++ b/src/plugins/task/cgroup/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/task/cray/Makefile.in b/src/plugins/task/cray/Makefile.in index c2b096f19563c63c2fe80d7ca53d2181c07948d0..f3f0b4bacc8bd18ab83a3e91c4f96d9a8f5f4cb9 100644 --- a/src/plugins/task/cray/Makefile.in +++ b/src/plugins/task/cray/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/task/none/Makefile.in b/src/plugins/task/none/Makefile.in index 0043bc105c9e985a5ddaf238279dd434940c65f9..b7fa1abb2d7bee4cb5a751a5b0f0a6333152cca8 100644 --- a/src/plugins/task/none/Makefile.in +++ b/src/plugins/task/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/topology/3d_torus/Makefile.in b/src/plugins/topology/3d_torus/Makefile.in index 519a3319886380e3737dee1d3012c817756f2563..ec945326673b98d4f09958e6ee99febdcbc5eb32 100644 --- a/src/plugins/topology/3d_torus/Makefile.in +++ b/src/plugins/topology/3d_torus/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/topology/Makefile.in b/src/plugins/topology/Makefile.in index ba0f925f45b198e4116a0d9f7969c8fe901f9286..f4853419005a45e18c078134f550cc14fe9ead88 100644 --- a/src/plugins/topology/Makefile.in +++ b/src/plugins/topology/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/topology/hypercube/Makefile.in b/src/plugins/topology/hypercube/Makefile.in index 86d0735a73359dafd6ea7d07a3697a722f164341..3db5652cd21c27b95bd4a199907562cc0727e417 100644 --- a/src/plugins/topology/hypercube/Makefile.in +++ b/src/plugins/topology/hypercube/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/topology/node_rank/Makefile.in b/src/plugins/topology/node_rank/Makefile.in index 11f5738fcf2e1b5dc634129fc3ddd1edd1ba032b..de42b53a71f3275a44204f90361e214e14516abe 100644 --- a/src/plugins/topology/node_rank/Makefile.in +++ b/src/plugins/topology/node_rank/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/topology/none/Makefile.in b/src/plugins/topology/none/Makefile.in index 3a6ca6e0b7b1646461f664d8d90bfb7332234d14..3adb579c0f285dacf83f067cbf786088d21ca5e8 100644 --- a/src/plugins/topology/none/Makefile.in +++ b/src/plugins/topology/none/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/plugins/topology/tree/Makefile.in b/src/plugins/topology/tree/Makefile.in index 0350833757bdf64ed8499fbe82beeac789f2fdf0..1caf34bd0e3c1cd41e4200a8f082cf4ef749eb23 100644 --- a/src/plugins/topology/tree/Makefile.in +++ b/src/plugins/topology/tree/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sacct/Makefile.in b/src/sacct/Makefile.in index 825d965d06f9929d7147a3a93cd31e69e06548da..740655c58046b8cc9908bc650074aa26cfdeb491 100644 --- a/src/sacct/Makefile.in +++ b/src/sacct/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sacctmgr/Makefile.in b/src/sacctmgr/Makefile.in index 9c5be05c0e55b726d30883a6b3b57b22da6cb451..a3f8a902f6dafa6b29f0397a0a6a1f34c75a8606 100644 --- a/src/sacctmgr/Makefile.in +++ b/src/sacctmgr/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/salloc/Makefile.in b/src/salloc/Makefile.in index a5682e6bff4e80e23bdb4274d9bc9e0730d4a841..4866c3f1b97b282a46a6b0cf942a48fbebb51918 100644 --- a/src/salloc/Makefile.in +++ b/src/salloc/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sattach/Makefile.in b/src/sattach/Makefile.in index ff8b66acb1c0d92764d06003542bd13d553731eb..8bf6cc48b7423a193d50edcb225e3772d6abdee4 100644 --- a/src/sattach/Makefile.in +++ b/src/sattach/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sbatch/Makefile.in b/src/sbatch/Makefile.in index 57626be99ebfbd0b9a0109fcfd8c55931d359a4c..4dc2caa873518f5b4939d7812dabce54cb30eac7 100644 --- a/src/sbatch/Makefile.in +++ b/src/sbatch/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sbcast/Makefile.in b/src/sbcast/Makefile.in index 6b94a78cb4c4f19cedb3e2c464aa001cf25c2d3f..ab3bb7903a791cd8b18ca6696bf39daa3f36da8f 100644 --- a/src/sbcast/Makefile.in +++ b/src/sbcast/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/scancel/Makefile.in b/src/scancel/Makefile.in index 3ad522790dfa4b333d6367ce98427d3f7759c73a..07800a9a9f6766d625979a1c0f5b4aec53e8bacc 100644 --- a/src/scancel/Makefile.in +++ b/src/scancel/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/scontrol/Makefile.in b/src/scontrol/Makefile.in index 6e0a5f7d87aea23ef99887c4f11f062f8ded986b..f82b3b95ecae48bbf68f6f6d8348030080f6a25b 100644 --- a/src/scontrol/Makefile.in +++ b/src/scontrol/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sdiag/Makefile.in b/src/sdiag/Makefile.in index 832888c4156e7ee0a044daba8b670afdb3401e2a..02a30f08fbd171a061e954e15f27fa0c3973e5d9 100644 --- a/src/sdiag/Makefile.in +++ b/src/sdiag/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sinfo/Makefile.in b/src/sinfo/Makefile.in index 4769b207ea8034f46f51005d4d14365e9013c1c7..7cab1e2531e7206146320300b6d1c0568f19edc9 100644 --- a/src/sinfo/Makefile.in +++ b/src/sinfo/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/slurmctld/Makefile.in b/src/slurmctld/Makefile.in index 91bbdcd30b029d507acc8911ce7b4344b68058e6..d389c0e0f38a6ad8504826bb8f65cc302ca5bf46 100644 --- a/src/slurmctld/Makefile.in +++ b/src/slurmctld/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/slurmd/Makefile.in b/src/slurmd/Makefile.in index 0f9edde2e8186095d3c245760b5e4ac24628e9bf..8f55e27080ea9878cb523c097cc66251a6bfc1fe 100644 --- a/src/slurmd/Makefile.in +++ b/src/slurmd/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/slurmd/common/Makefile.in b/src/slurmd/common/Makefile.in index efafbfcee3321cd21d35d78b0af4bdd967c2f0a5..8e3dbb42668f1319c7d9b5fd0995b49896c91fe8 100644 --- a/src/slurmd/common/Makefile.in +++ b/src/slurmd/common/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/slurmd/slurmd/Makefile.in b/src/slurmd/slurmd/Makefile.in index f20f38914c18f936806c766a9126220f6694a31a..3350146ae877b8f757c52e43d829b6696c6cef2e 100644 --- a/src/slurmd/slurmd/Makefile.in +++ b/src/slurmd/slurmd/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/slurmd/slurmstepd/Makefile.in b/src/slurmd/slurmstepd/Makefile.in index ffd0b98db01e603e235b00fa536fd872965770a1..4858094ede34d571ec615abb2c74adeaa554bab9 100644 --- a/src/slurmd/slurmstepd/Makefile.in +++ b/src/slurmd/slurmstepd/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/slurmdbd/Makefile.in b/src/slurmdbd/Makefile.in index 6d416d1dc579dbba01cb2a22e2cde29b9b7e488a..dc2052debb2807e17a8c2e8916640be9d246cd09 100644 --- a/src/slurmdbd/Makefile.in +++ b/src/slurmdbd/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/smap/Makefile.in b/src/smap/Makefile.in index 936faad32d4306a47b9d3143a0851df38db55860..fe221280bbeeb8d5225fd3e373e664398e42b8d8 100644 --- a/src/smap/Makefile.in +++ b/src/smap/Makefile.in @@ -139,7 +139,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sprio/Makefile.in b/src/sprio/Makefile.in index 6d210fa1c3cbfc416b75ce6e3c37c191b871e0c5..bfe15377804d7950faebc78526236c01f25d84e9 100644 --- a/src/sprio/Makefile.in +++ b/src/sprio/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/squeue/Makefile.in b/src/squeue/Makefile.in index fcbe626bcfad090e998aea9b256a140dc72afafd..026ffab66e9b84257ecda13083f9b08fe2469d99 100644 --- a/src/squeue/Makefile.in +++ b/src/squeue/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sreport/Makefile.in b/src/sreport/Makefile.in index 7322e079c569d4ebd962a3a7147b25d31b66e771..ece1ff0fc5581f47ba1d06355b2b8414856283d1 100644 --- a/src/sreport/Makefile.in +++ b/src/sreport/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/srun/Makefile.in b/src/srun/Makefile.in index 0f46b7a5fb2d3330c7a0d0753ad5478818d162d7..c42183acdc7a603f3b38ecfa5218dba2b9411123 100644 --- a/src/srun/Makefile.in +++ b/src/srun/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/srun/libsrun/Makefile.in b/src/srun/libsrun/Makefile.in index a89888f3636fd212d212b9a17e4e3ebdd55070af..9b4d548db7ffb97d77a0eaf25cd47dd45a4597c9 100644 --- a/src/srun/libsrun/Makefile.in +++ b/src/srun/libsrun/Makefile.in @@ -133,7 +133,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/srun_cr/Makefile.in b/src/srun_cr/Makefile.in index 0c1d9aeb88e72bb47db3e251134a5f3337079e86..c799879748c379f21d5cd4768d6c006b50afeb5d 100644 --- a/src/srun_cr/Makefile.in +++ b/src/srun_cr/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sshare/Makefile.in b/src/sshare/Makefile.in index 43bfd078b15b1d93ee1fec1eee56461bac427111..ad79c0b75e7485969bd5785b5fdc9ea04fa1f2ae 100644 --- a/src/sshare/Makefile.in +++ b/src/sshare/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sstat/Makefile.in b/src/sstat/Makefile.in index d978b7fd4b9f5181db01bb85118213faf33e3477..a6864e7e9975dc4a919af97b14aca289757287a8 100644 --- a/src/sstat/Makefile.in +++ b/src/sstat/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/strigger/Makefile.in b/src/strigger/Makefile.in index 5cdb1f0c0839556d609e3a3a6c4b200afac965f6..bb122c4ddacb39638aa67007ef5e7f8ba86bef0f 100644 --- a/src/strigger/Makefile.in +++ b/src/strigger/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/src/sview/Makefile.in b/src/sview/Makefile.in index 14cfedf672f1a18d3021e2aa00a7eccbc8e8906a..428e468e94b55dec2d6ea3afe28f0984abda4116 100644 --- a/src/sview/Makefile.in +++ b/src/sview/Makefile.in @@ -135,7 +135,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/testsuite/Makefile.in b/testsuite/Makefile.in index 299384188d4a416952ef2e4083bb448a37032b5c..129977b50de86c1712f037c5d10f85f0a63891b9 100644 --- a/testsuite/Makefile.in +++ b/testsuite/Makefile.in @@ -131,7 +131,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/testsuite/expect/Makefile.in b/testsuite/expect/Makefile.in index 3a83c02223cd297a5af6d7ca620a2fdb192dea0d..f0583215df1bc4ae37d572bfeb39804b5741d900 100644 --- a/testsuite/expect/Makefile.in +++ b/testsuite/expect/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/testsuite/expect/test7.9 b/testsuite/expect/test7.9 index b56f9db22c9616647e3d26c0c2eedf9b5499444a..ec198ea78dca53fa18c726abf72eb51b6ac9b8a0 100755 --- a/testsuite/expect/test7.9 +++ b/testsuite/expect/test7.9 @@ -63,11 +63,6 @@ expect { set invalid 1 exp_continue } - -re "proctrack/sgi_job" { - send_user "\nWARNING: test incompatible with proctrack/sgi_job\n" - set invalid 1 - exp_continue - } -re "proctrack/cray" { send_user "\nWARNING: test incompatible with proctrack/cray\n" set invalid 1 diff --git a/testsuite/slurm_unit/Makefile.in b/testsuite/slurm_unit/Makefile.in index 542b336609f352394b7bcb4887513c00cef97f9b..ab076a4543bc11e2cc8ef948dcf4298b6b4e75eb 100644 --- a/testsuite/slurm_unit/Makefile.in +++ b/testsuite/slurm_unit/Makefile.in @@ -130,7 +130,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/testsuite/slurm_unit/api/Makefile.in b/testsuite/slurm_unit/api/Makefile.in index 238b33d6136c477f3f50ed82963337f84d111008..1dcaa627d512d0b72ab8fe8e0fdc0799699daf7d 100644 --- a/testsuite/slurm_unit/api/Makefile.in +++ b/testsuite/slurm_unit/api/Makefile.in @@ -132,7 +132,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/testsuite/slurm_unit/api/manual/Makefile.in b/testsuite/slurm_unit/api/manual/Makefile.in index a07c4e1bf36b7e0536978501341c8066b7f85f47..a29c24cbc7025b70a2ea9c4bb48e8256ecafe088 100644 --- a/testsuite/slurm_unit/api/manual/Makefile.in +++ b/testsuite/slurm_unit/api/manual/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/testsuite/slurm_unit/common/Makefile.in b/testsuite/slurm_unit/common/Makefile.in index c7e7bc7383909da95f11393126a99a7971b3291a..20624621a493c80c08076facfe68f7c8be878b06 100644 --- a/testsuite/slurm_unit/common/Makefile.in +++ b/testsuite/slurm_unit/common/Makefile.in @@ -136,7 +136,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/testsuite/slurm_unit/common/slurm_protocol_pack/Makefile.in b/testsuite/slurm_unit/common/slurm_protocol_pack/Makefile.in index d475e6c2e86370d90cd88f6682ce87f79a68cf50..69caebd5072292b1630f43e597d28ced8230306f 100644 --- a/testsuite/slurm_unit/common/slurm_protocol_pack/Makefile.in +++ b/testsuite/slurm_unit/common/slurm_protocol_pack/Makefile.in @@ -134,7 +134,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \ diff --git a/testsuite/slurm_unit/common/slurmdb_pack/Makefile.in b/testsuite/slurm_unit/common/slurmdb_pack/Makefile.in index a446426aefbf101ab76dade205110da451dbc975..bd9f082db6a4862fce88ab883f8868eaea9f060b 100644 --- a/testsuite/slurm_unit/common/slurmdb_pack/Makefile.in +++ b/testsuite/slurm_unit/common/slurmdb_pack/Makefile.in @@ -147,7 +147,6 @@ am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_check_compile_flag.m4 \ $(top_srcdir)/auxdir/x_ac_readline.m4 \ $(top_srcdir)/auxdir/x_ac_rrdtool.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_ssh2.m4 \ $(top_srcdir)/auxdir/x_ac_systemd.m4 \