Jeffrey Altman <[EMAIL PROTECTED]> writes:
> The Kerberos V5 distribution contains an aclocal.m4 file with the
> following reference:
>
> AC_PREREQ(2.12)
> dnl
> dnl Figure out the top of the source and build trees. We depend on
> localdir
> dnl being a relative pathname; we could make it general later, but for
> now
> dnl this is good enough.
> dnl
> AC_DEFUN(V5_SET_TOPDIR,[dnl
> ac_reltopdir=AC_LOCALDIR
> case "$ac_reltopdir" in
> /*)
> echo "Configure script built with absolute localdir pathname"
> exit 1
> ;;
> "")
> ac_reltopdir=.
> ;;
> esac
>
> AC_LOCALDIR is undefined.
First of all, I don't understand what exactly you are trying to do.
Second, this is the MIT Kerberos 5, right? If so, I was under the
impression that it had its own version of autoconf. Can it be that
they have added something that recognizes AC_LOCALDIR? I fail to find
anything in vanilla autoconf 2.13 that handles AC_LOCALDIR. And
finally, the reason you get the bug error from autoconf is that it
finds an unexpected AC_ in its output. That's not really optimally
robust and informative, but that's the way things are. But since it's
not setting AC_LOCALDIR to anything, it seems like you're not
fulfilling your original goal, so what are you trying to do?
/assar