now handled by CONFIG_RULES.
dumpv4.c: Change name of controlling #ifdef to be KRB5_KRB4_COMPAT
instead of KRB4.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6003
dc483132-0cff-0310-8789-
dd5450dbe970
+Fri Jun 9 18:14:43 1995 <tytso@rsx-11.mit.edu>
+
+ * configure.in: Remove standardized set of autoconf macros, which
+ are now handled by CONFIG_RULES.
+
+ * dumpv4.c: Change name of controlling #ifdef to be
+ KRB5_KRB4_COMPAT instead of KRB4.
+
Sun May 21 14:20:32 1995 Ezra Peisach <epeisach@kangaroo.mit.edu>
* dumpv4.c: Include k5-int.h before krb.h so that PROTOTYPE is not
AC_INIT(kdb5_edit.c)
-WITH_CCOPTS
CONFIG_RULES
-AC_SET_BUILDTOP
AC_PROG_INSTALL
AC_PROG_YACC
AC_HAVE_HEADERS(unistd.h sys/timeb.h alloca.h)
AC_HAVE_FUNCS(ftime timezone)
AC_CONST
AC_HEADER_STDC
-WITH_NETLIB
AC_CHECK_LIB(ndbm,main)
AC_CHECK_LIB(dbm,main)
AC_HAVE_FUNCS(getcwd)
SS_RULES
-KRB_INCLUDE
-WITH_KRB4
-WITH_KRB5ROOT
V5_AC_OUTPUT_MAKEFILE
* Dump a KDC database into a V4 slave dump.
*/
-#ifdef KRB4
+#ifdef KRB5_KRB4_COMPAT
#include "k5-int.h"
#include "com_err.h"
return 0;
}
-#else /* KRB4 */
+#else /* KRB5_KRB4_COMPAT */
void dump_v4db(argc, argv)
int argc;
char **argv;
{
printf("This version of krb5_edit does not support the V4 dump command.\n");
}
-#endif /* KRB4 */
+#endif /* KRB5_KRB4_COMPAT */