##***************************************************************************** ## $Id: ac_machines.m4 494 2003-06-20 22:44:56Z achu $ ##***************************************************************************** # AUTHOR: # Jim Garlick # # SYNOPSIS: # AC_MACHINES # # DESCRIPTION: # Adds support for the "--with-machines=" configure script option to # specify a flat file list of all nodes. # # # WARNINGS: # This macro must be placed after AC_PROG_CC or equivalent. ##***************************************************************************** AC_DEFUN([AC_MACHINES], [ AC_MSG_CHECKING([for path to machines file]) AC_ARG_WITH([machines], AC_HELP_STRING([--with-machines(=PATH)], [Specify a flat file list of all nodes]), [ case "$withval" in no) ac_have_machines=no ;; yes) ac_have_machines=yes MACHINES="/etc/machines" ;; *) ac_have_machines=yes MACHINES=$withval esac ] ) AC_MSG_RESULT([${ac_have_machines=no}]) : ${ac_have_machines=no} if test "$ac_have_machines" = yes; then AC_ADD_STATIC_MODULE("machines") AC_DEFINE([HAVE_MACHINES], [1], [Define if you have machines]) AC_DEFINE_UNQUOTED([_PATH_MACHINES], ["$MACHINES"], [Define to default machines file.]) fi AC_SUBST(HAVE_MACHINES) AC_SUBST(MACHINES) ])