+Fri Apr 28 11:15:56 1995 Mark Eichin <eichin@cygnus.com>
+
+ * configure.in: correct use of --with-krb4 to match top level.
+
Sat Jul 16 09:18:49 1994 Tom Yu (tlyu at dragons-lair)
* configure.in (in all relevant subdirs): another try at making
AC_INIT(configure.in)
WITH_CCOPTS
AC_SET_BUILDTOP
-AC_ARG_WITH([krb4],[include Kerberos V4 support],convert=convert,convert=)
+AC_ARG_WITH([krb4],[include Kerberos V4 support],,withval=yes)dnl
+if test $withval = no; then
+ AC_MSG_RESULT(disabling kdb5_convert)
+ convert=
+else
+ AC_MSG_RESULT(kdb5_convert included)
+ convert=convert
+fi
CONFIG_DIRS(create destroy edit stash aname $convert)
MAKE_SUBDIRS("making",all)
MAKE_SUBDIRS("cleaning",clean)
+Fri Apr 28 11:11:54 1995 Mark Eichin <eichin@cygnus.com>
+
+ * configure.in: correct use of --with-krb4 to match top level.
+
Thu Apr 27 17:39:04 1995 Keith Vetter (keithv@fusion.com)
* k5-config.h: Added MAXPATHLEN constant.
[ --enable-athena build with MIT Project Athena configuration],
AC_DEFINE(KRB5_ATHENA_COMPAT),)
-AC_ARG_WITH([krb4],
-[ --with-krb4=KRB4DIR build with Kerberos V4 backwards compatibility],
-AC_DEFINE(KRB5_KRB4_COMPAT),,)
-
+AC_ARG_WITH([krb4],,
+dnl leave out help string, see top level for that
+,withval=yes)dnl
+if test $withval = no; then
+ AC_MSG_RESULT(No Kerberos 4 compatibility)
+else
+ AC_MSG_RESULT(Kerberos 4 compatibility enabled)
+ AC_DEFINE(KRB5_KRB4_COMPAT)
+fi
V5_AC_OUTPUT_MAKEFILE