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