source: server/common/oursrc/tokensys/configure.in @ 36

Last change on this file since 36 was 36, checked in by jbarnold, 17 years ago
Improved package dependency tracking
File size: 572 bytes
RevLine 
[1]1AC_INIT()
2
[36]3AC_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])
[1]9AC_SUBST(kinit_path)
[36]10if test "$kinit_path" = ""; then
11        AC_ERROR(Cannot find kinit)
12fi
[1]13
[36]14AC_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])
[1]20AC_SUBST(aklog_path)
[36]21if test "$aklog_path" = ""; then
22        AC_ERROR(Cannot find aklog)
23fi
[1]24
25AC_OUTPUT(Makefile)
26AC_OUTPUT(renew)
Note: See TracBrowser for help on using the repository browser.