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