Changeset 36 for server/common/oursrc
- Timestamp:
- Nov 28, 2006, 8:08:14 PM (18 years ago)
- Location:
- server/common/oursrc
- Files:
-
- 4 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
server/common/oursrc/execsys/Makefile.in
r1 r36 12 12 clean: 13 13 rm -f staticsys-cat 14 15 preauto: clean16 rm -f configure config.* Makefile17 rm -rf auto*.cache18 19 ready: preauto20 autoconf -
server/common/oursrc/lockeradm/Makefile.in
r1 r36 10 10 clean: 11 11 rm -f signup-scripts-frontend 12 13 preauto: clean14 rm -f configure config.* Makefile admof signup-scripts-backend15 rm -rf auto*.cache16 17 ready: preauto18 autoconf -
server/common/oursrc/lockeradm/configure.in
r11 r36 5 5 dnl Needed by admof.in 6 6 7 AC_PATH_PROG(fs_path, fs) 7 AC_ARG_WITH(fs, 8 [ --with-fs[=PATH] fs is located at PATH],[ 9 if test "$withval" != "no" -a "$withval" != "yes"; then 10 fs_path="$withval" 11 fi 12 ]) 8 13 AC_SUBST(fs_path) 9 AC_PATH_PROG(pts_path, pts) 14 if test "$fs_path" = ""; then 15 AC_ERROR(Cannot find fs) 16 fi 17 18 AC_ARG_WITH(pts, 19 [ --with-pts[=PATH] pts is located at PATH],[ 20 if test "$withval" != "no" -a "$withval" != "yes"; then 21 pts_path="$withval" 22 fi 23 ]) 10 24 AC_SUBST(pts_path) 25 if test "$pts_path" = ""; then 26 AC_ERROR(Cannot find pts) 27 fi 11 28 12 29 dnl Needed by signup-scripts-backend.in … … 14 31 AC_PATH_PROG(ls_path, ls) 15 32 AC_SUBST(ls_path) 33 if test "$ls_path" = ""; then 34 AC_ERROR(Cannot find ls) 35 fi 16 36 AC_PATH_PROG(grep_path, grep) 17 37 AC_SUBST(grep_path) 38 if test "$grep_path" = ""; then 39 AC_ERROR(Cannot find grep) 40 fi 18 41 19 42 AC_PATH_PROG(sudo_path, sudo) 20 43 AC_SUBST(sudo_path) 44 if test "$sudo_path" = ""; then 45 AC_ERROR(Cannot find sudo) 46 fi 21 47 AC_PATH_PROG(useradd_path, useradd) 22 48 AC_SUBST(useradd_path) 49 if test "$useradd_path" = ""; then 50 AC_ERROR(Cannot find useradd) 51 fi 23 52 AC_PATH_PROG(groupadd_path, groupadd) 24 53 AC_SUBST(groupadd_path) 54 if test "$groupadd_path" = ""; then 55 AC_ERROR(Cannot find groupadd) 56 fi 57 25 58 AC_PATH_PROG(setquota_path, setquota) 26 59 AC_SUBST(setquota_path) 60 if test "$setquota_path" = ""; then 61 AC_ERROR(Cannot find setquota) 62 fi 27 63 28 64 AC_PATH_PROG(hesinfo_path, hesinfo) 29 65 AC_SUBST(hesinfo_path) 66 if test "$hesinfo_path" = ""; then 67 AC_ERROR(Cannot find hesinfo) 68 fi 30 69 31 70 dnl Needed by modbash.in 32 71 33 72 AC_PATH_PROG(bash_path, bash) 34 AC_SUBST(bash) 73 AC_SUBST(bash_path) 74 if test "$bash_path" = ""; then 75 AC_ERROR(Cannot find bash) 76 fi 35 77 36 78 AC_OUTPUT(Makefile) -
server/common/oursrc/sqladm/Makefile.in
r1 r36 10 10 clean: 11 11 rm -f signup-sql 12 13 preauto: clean14 rm -f configure config.* Makefile signup-sql15 rm -rf auto*.cache16 17 ready: preauto18 autoconf -
server/common/oursrc/tokensys/Makefile.in
r1 r36 2 2 CFLAGS = @CFLAGS@ 3 3 prefix = @prefix@ 4 5 preauto:6 rm -f configure config.* Makefile renew7 rm -rf auto*.cache8 9 ready: preauto10 autoconf -
server/common/oursrc/tokensys/configure.in
r10 r36 1 1 AC_INIT() 2 2 3 AC_PATH_PROG(kinit_path, kinit) 3 AC_ARG_WITH(kinit, 4 [ --with-kinit[=PATH] kinit is located at PATH],[ 5 if test "$withval" != "no" -a "$withval" != "yes"; then 6 kinit_path="$withval" 7 fi 8 ]) 4 9 AC_SUBST(kinit_path) 10 if test "$kinit_path" = ""; then 11 AC_ERROR(Cannot find kinit) 12 fi 5 13 6 AC_PATH_PROG(aklog_path, aklog) 14 AC_ARG_WITH(aklog, 15 [ --with-aklog[=PATH] aklog is located at PATH],[ 16 if test "$withval" != "no" -a "$withval" != "yes"; then 17 aklog_path="$withval" 18 fi 19 ]) 7 20 AC_SUBST(aklog_path) 21 if test "$aklog_path" = ""; then 22 AC_ERROR(Cannot find aklog) 23 fi 8 24 9 25 AC_OUTPUT(Makefile)
Note: See TracChangeset
for help on using the changeset viewer.