Blame src/pm/subconfigure.m4

Packit 0848f5
[#] start of __file__
Packit 0848f5
Packit 0848f5
AC_DEFUN([PAC_SUBCFG_PREREQ_]PAC_SUBCFG_AUTO_SUFFIX,[
Packit 0848f5
])
Packit 0848f5
Packit 0848f5
AC_DEFUN([PAC_SUBCFG_BODY_]PAC_SUBCFG_AUTO_SUFFIX,[
Packit 0848f5
Packit 0848f5
dnl we handle the AM_CONDITIONAL for hydra to keep hydra buildable as a
Packit 0848f5
dnl standalone package
Packit 0848f5
for pm_name in $pm_names ; do
Packit 0848f5
    AS_CASE([$pm_name],
Packit 0848f5
            [hydra],[build_pm_hydra=yes])
Packit 0848f5
done
Packit 0848f5
Packit 0848f5
# we handle these conditionals here in the BODY because they depend on logic in
Packit 0848f5
# the main portion of the top-level configure
Packit 0848f5
AM_CONDITIONAL([BUILD_PM_HYDRA],[test "x$build_pm_hydra" = "xyes"])
Packit 0848f5
Packit 0848f5
dnl AC_MSG_NOTICE([RUNNING CONFIGURE FOR PROCESS MANAGERS])
Packit 0848f5
# do nothing extra here for now
Packit 0848f5
Packit 0848f5
])dnl end _BODY
Packit 0848f5
Packit 0848f5
[#] end of __file__