AC_INIT(signup-scripts-frontend.c) AC_PROG_CC AC_DEFUN(REQUIRE_PATH,[ AC_SUBST($1_path) if test "[$]$1_path" = ""; then AC_ERROR(Cannot find $1) fi ]) AC_DEFUN(LOCATE,[ AC_PATH_PROG($1_path, $1) REQUIRE_PATH($1) ]) dnl Needed by admof.in AC_ARG_WITH(fs, [ --with-fs[=PATH] fs is located at PATH],[ if test "$withval" != "no" -a "$withval" != "yes"; then fs_path="$withval" fi ]) REQUIRE_PATH(fs) AC_ARG_WITH(pts, [ --with-pts[=PATH] pts is located at PATH],[ if test "$withval" != "no" -a "$withval" != "yes"; then pts_path="$withval" fi ]) REQUIRE_PATH(pts) dnl Needed by signup-scripts-backend.in LOCATE(ls) LOCATE(grep) LOCATE(sudo) LOCATE(useradd) LOCATE(groupadd) LOCATE(setquota) LOCATE(hesinfo) dnl Needed by modbash.in LOCATE(bash) AC_OUTPUT(Makefile) AC_OUTPUT(admof) AC_OUTPUT(signup-scripts-backend) AC_OUTPUT(modbash)