[2064] in Kerberos_V5_Development
problem 2 for bsd/os 2.1
daemon@ATHENA.MIT.EDU (Paul A Vixie)
Tue Dec 3 00:25:33 1996
To: krbdev@MIT.EDU
Date: Mon, 02 Dec 1996 21:25:20 -0800
From: Paul A Vixie <paul@vix.com>
i reran configure without --with-tcl=/usr to avoid the malloc.h error,
and two bad things happened:
(1) kadmin/testing/util still tried to build, and it needs tcl
(2) bsd/os 2.1 ships with tcl 7.4 and that has no main() -- so in test.c...
#define IS_TCL_7_5 ((TCL_MAJOR_VERSION * 100 + TCL_MINOR_VERSION) >= 705)
#if IS_TCL_7_5
should be:
#define _TCL_MAIN ((TCL_MAJOR_VERSION * 100 + TCL_MINOR_VERSION) >= 704)
#if _TCL_MAIN