source: server/common/oursrc/lockeradm/configure.in @ 11

Last change on this file since 11 was 11, checked in by jbarnold, 18 years ago
Fixed various bugs discovered when testing packages Improved OpenAFS kernel module patch
File size: 756 bytes
RevLine 
[1]1AC_INIT(signup-scripts-frontend.c)
2
3AC_PROG_CC
4
5dnl Needed by admof.in
6
7AC_PATH_PROG(fs_path, fs)
8AC_SUBST(fs_path)
9AC_PATH_PROG(pts_path, pts)
10AC_SUBST(pts_path)
11
12dnl Needed by signup-scripts-backend.in
13
14AC_PATH_PROG(ls_path, ls)
15AC_SUBST(ls_path)
16AC_PATH_PROG(grep_path, grep)
17AC_SUBST(grep_path)
18
[11]19AC_PATH_PROG(sudo_path, sudo)
20AC_SUBST(sudo_path)
[1]21AC_PATH_PROG(useradd_path, useradd)
22AC_SUBST(useradd_path)
23AC_PATH_PROG(groupadd_path, groupadd)
24AC_SUBST(groupadd_path)
25AC_PATH_PROG(setquota_path, setquota)
26AC_SUBST(setquota_path)
27
28AC_PATH_PROG(hesinfo_path, hesinfo)
29AC_SUBST(hesinfo_path)
30
[11]31dnl Needed by modbash.in
[1]32
33AC_PATH_PROG(bash_path, bash)
34AC_SUBST(bash)
35
36AC_OUTPUT(Makefile)
37AC_OUTPUT(admof)
38AC_OUTPUT(signup-scripts-backend)
[11]39AC_OUTPUT(modbash)
Note: See TracBrowser for help on using the repository browser.