live in a subdir.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10243
dc483132-0cff-0310-8789-
dd5450dbe970
+Wed Oct 22 15:39:38 1997 Ezra Peisach <epeisach@mit.edu>
+
+ * tcl_wrapper.c: Include either tcl.h or tcl/tcl.h
+
Fri Jul 25 15:46:24 1997 Tom Yu <tlyu@mit.edu>
* loadv4.c:
#include "k5-int.h"
#include "kdb5_edit.h"
+#ifdef HAVE_TCL_H
#include <tcl.h>
+#elif defined(HAVE_TCL_TCL_H)
+#include <tcl/tcl.h>
+#endif
#define CMDDECL(x) int x(clientData, interp, argc, argv)\
ClientData clientData;\
+Wed Oct 22 15:40:34 1997 Ezra Peisach <epeisach@dumpster.rose.brandeis.edu>
+
+ * test.c, tcl_ovsec_kadm.c, tcl_krb5_hash.c, tcl_kadm5.c: Include
+ either tcl.h or tcl/tcl.h
+
Mon Mar 31 17:43:06 1997 Barry Jaspan <bjaspan@mit.edu>
* Makefile.in: be more verbose if Tcl is unavailable
#include <stdio.h>
#include <string.h>
+#if HAVE_TCL_H
#include <tcl.h>
+#elif HAVE_TCL_TCL_H
+#include <tcl/tcl.h>
+#endif
#define USE_KADM5_API_VERSION 2
#include <kadm5/admin.h>
#include <com_err.h>
* been freed by the caller).
*/
+#if HAVE_TCL_H
#include <tcl.h>
+#elif HAVE_TCL_TCL_H
+#include <tcl/tcl.h>
+#endif
#include <assert.h>
#define SEP_STR "$"
#include <stdio.h>
#include <string.h>
+#if HAVE_TCL_H
#include <tcl.h>
+#elif HAVE_TCL_TCL_H
+#include <tcl/tcl.h>
+#endif
#define USE_KADM5_API_VERSION 1
#include <kadm5/admin.h>
#include <com_err.h>
+#if HAVE_TCL_H
#include <tcl.h>
+#elif HAVE_TCL_TCL_H
+#include <tcl/tcl.h>
+#endif
#define _TCL_MAIN ((TCL_MAJOR_VERSION * 100 + TCL_MINOR_VERSION) >= 704)