[2248] in Kerberos-V5-bugs
Re: minor krb5-beta7 v4 build bug.
daemon@ATHENA.MIT.EDU (epeisach@MIT.EDU)
Thu Sep 19 08:12:06 1996
From: epeisach@MIT.EDU
Date: Thu, 19 Sep 1996 08:11:13 -0400
To: Wolfgang Rupprecht <wolfgang@wsrcc.com>
Cc: krb5-bugs@MIT.EDU
>Configured with:
>
> ../src/configure --without-krb4 --with-cc=gcc --with-ccopts=-O2
>
>Even thought v4 emulation is turned off, the v4server compilation is
>attempted. This fails big-time and the overall make stops at that
>point.
Here is the fix for configure.in to solve the problem... (of course you
need to compile autoconf in your source tree if you want to regenerate
the configure file)
Index: configure.in
===================================================================
RCS file: /mit/krb5/.cvsroot/src/kadmin/configure.in,v
retrieving revision 1.17
retrieving revision 1.18
diff -c -r1.17 -r1.18
*** configure.in 1996/09/11 20:36:15 1.17
--- configure.in 1996/09/19 12:07:35 1.18
***************
*** 1,6 ****
AC_INIT(configure.in)
CONFIG_RULES
! dnl CONFIG_DIRS(kpasswd v5server v5client)
! CONFIG_DIRS(cli dbutil passwd ktutil server v4server v5passwdd)
DO_SUBDIRS
V5_AC_OUTPUT_MAKEFILE
--- 1,10 ----
AC_INIT(configure.in)
CONFIG_RULES
! if test -z "$KRB4_LIB"; then
! v4server=""
! else
! v4server=v4server
! fi
! CONFIG_DIRS(cli dbutil passwd ktutil server $v4server v5passwdd)
DO_SUBDIRS
V5_AC_OUTPUT_MAKEFILE