[7939] in Kerberos
Re: Kerberos V5 BETA 7 is released
daemon@ATHENA.MIT.EDU (Barry Jaspan)
Thu Sep 12 13:34:07 1996
Date: Thu, 12 Sep 1996 13:05:15 -0400
From: "Barry Jaspan" <bjaspan@MIT.EDU>
To: Low Lay Hua <layhua@staff.singnet.com.sg>
Cc: "Theodore Y. Ts'o" <tytso@MIT.EDU>, kerberos@MIT.EDU
In-Reply-To: [7936]
When I run ./configure for beta, I got the following errors.
configuring in export
running /bin/sh ./configure --cache-file=../.././config.cache --srcdir=.
configure: error: can not find sources in .
configure: error: ./configure failed for export
configure: error: ./configure failed for kadmin
Ooops.
kadmin/export and kadmin/import contained parts of the new admin
system that are no longer used (the functionality has been integrated
into kdb5_util). We haven't been building those directories for a
while, and just before the release was cut we removed them from the
source tree. The directories were also removed from configure.in, but
only at the last minute, and by accident the configure script was not
re-generated (configure is generated from configure.in by autoconf as
part of the final release process). Translation: This was a stupid
mistake.
Applying the following simple patch (with the patch program or by
hand) to src/kadmin/configure will fix the problem.
Barry
--- snip snip ---
*** configure Wed Sep 11 10:38:55 1996
--- /var/tmp/configure Thu Sep 12 12:50:03 1996
***************
*** 1030,1036 ****
# sed with no file args requires a program.
test "$program_transform_name" = "" && program_transform_name="s,x,x,"
! subdirs="export import cli dbutil passwd ktutil server v4server v5passwdd"
RECURSE_TARGETS="all-unix clean-unix install-unix check-unix Makefiles"
--- 1030,1036 ----
# sed with no file args requires a program.
test "$program_transform_name" = "" && program_transform_name="s,x,x,"
! subdirs="cli dbutil passwd ktutil server v4server v5passwdd"
RECURSE_TARGETS="all-unix clean-unix install-unix check-unix Makefiles"
***************
*** 1342,1348 ****
esac
done
! for ac_config_dir in export import cli dbutil passwd ktutil server v4server v5passwdd; do
# Do not complain, so a configure script can configure whichever
# parts of a large source tree are present.
--- 1342,1348 ----
esac
done
! for ac_config_dir in cli dbutil passwd ktutil server v4server v5passwdd; do
# Do not complain, so a configure script can configure whichever
# parts of a large source tree are present.