[3176] in Kerberos-V5-bugs
pending/920: build problem under Debian GNU/Linux
daemon@ATHENA.MIT.EDU (Douglas L Stewart)
Sun Feb 4 21:07:11 2001
Resent-From: gnats@rt-11.mit.edu (GNATS Management)
Resent-To: gnats-admin@RT-11.mit.edu
Resent-Reply-To: krb5-bugs@MIT.EDU, Douglas L Stewart <douglas@colltech.com>
Message-Id: <3A7E09D8.9DA71A8F@colltech.com>
Date: Sun, 04 Feb 2001 20:03:04 -0600
From: Douglas L Stewart <douglas@colltech.com>
To: krb5-bugs@MIT.EDU
>Number: 920
>Category: pending
>Synopsis: build problem under Debian GNU/Linux
>Confidential: yes
>Severity: serious
>Priority: medium
>Responsible: gnats-admin
>State: open
>Class: sw-bug
>Submitter-Id: unknown
>Arrival-Date: Sun Feb 4 21:07:00 EST 2001
>Last-Modified:
>Originator:
>Organization:
>Release:
>Environment:
>Description:
>How-To-Repeat:
>Fix:
>Audit-Trail:
>Unformatted:
I had a small problem building Kerberos under Debian GNU/Linux. The TCL
include files are under /usr/include/tcl8.3 and the following check for
/usr was preventing configure from finding tcl.h. Anyone see a problem
with this fix? (I'm not sure if there was a good reason for that check
being there...) If the fix is good it'd be great to see it included in
the next release. Thanks!
-Douglas
*** krb5-1.2.1.old/src/aclocal.m4 Thu Jun 29 21:26:54 2000
--- krb5-1.2.1/src/aclocal.m4 Sat Feb 3 02:19:46 2001
***************
*** 743,756 ****
if test -n "$tcl_ok_conf" ; then
. $tcl_ok_conf
TCL_INCLUDES=
- if test "$TCL_PREFIX" != /usr ; then
for incdir in "$TCL_PREFIX/include/tcl$v" "$TCL_PREFIX/include" ;
do
if test -r "$incdir/tcl.h" -o -r "$incdir/tcl/tcl.h" ; then
TCL_INCLUDES=-I$incdir
break
fi
done
- fi
TCL_LIBS="$TCL_LIB_SPEC $TCL_LIBS $TCL_DL_LIBS"
TCL_LIBPATH=
TCL_RPATH=
--- 743,754 ----